How do you detect Windows logon event?
And how do you initiate a user logon from a Windows service?
I'm trying to write a piece of code that will detect logon events and log another one automatically.
|
1
|
|
|
|
|
|
If you are developing for Windows 2000/XP you can create a Winlogon Notification Package using the JWA libraries and Delphi. They've made it extremely easy: http://blog.delphi-jedi.net/2008/05/27/winlogon-notification-package/ This also allows you to put a form on the CTRL+ALT+DEL screen if you'd like as well. That form is running under the SYSTEM profile. |
||
|
|
|
|
You can detect a user logon by for example monitoring the event log. You can also start a process with a specific user, as Richard explained. However, it sounds like you are trying so do something else, that is to swap the logon identity of the logged on user. This I do not think is possible. |
||
|
|
|
|
If any mechanism exists it is likely to be in WMI. There are a number of WMI classes. Notably
The |
||
|
|