Hello.
OK, Thanks to the help I have the remote debugging worked out.
Here is my next hurdle.
I have a service that is supposed to be catching Event Log written
events.
this.eventLog1. EntryWritten += new
System.Diagnost ics.EntryWritte nEventHandler(t his.eventLog1_E ntryWritten);
It catches event log entries just fine when I am logged in and catches
the log off events, but it does not seem to catch the logon events.
I figured I could remote debug this, however since I have to have the
remote debugging monitor running, I can't debug while the user is
logged off.
Any ideas as how to debug this particular problem? That is, debug
before a user has signed on?
Or even better yet, any ideas as to why my
System.Diagnost ics.EntryWritte nEventHandler(t his.eventLog1_E ntryWritten)
is not catching anything until after a user signs in? It's a service,
so it is indeed running before a user signs in.
Thanks as always!
-A
OK, Thanks to the help I have the remote debugging worked out.
Here is my next hurdle.
I have a service that is supposed to be catching Event Log written
events.
this.eventLog1. EntryWritten += new
System.Diagnost ics.EntryWritte nEventHandler(t his.eventLog1_E ntryWritten);
It catches event log entries just fine when I am logged in and catches
the log off events, but it does not seem to catch the logon events.
I figured I could remote debug this, however since I have to have the
remote debugging monitor running, I can't debug while the user is
logged off.
Any ideas as how to debug this particular problem? That is, debug
before a user has signed on?
Or even better yet, any ideas as to why my
System.Diagnost ics.EntryWritte nEventHandler(t his.eventLog1_E ntryWritten)
is not catching anything until after a user signs in? It's a service,
so it is indeed running before a user signs in.
Thanks as always!
-A
Comment