vote up 2 vote down star
1

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.

flag

48% accept rate

4 Answers

vote up 1 vote down

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.

link|flag
vote up 1 vote down

WTSRegisterSessionNotification() or a Winlogon Notification Package

link|flag
vote up 1 vote down

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.

link|flag
vote up 2 vote down

How do you detect Windows logon event?

If any mechanism exists it is likely to be in WMI. There are a number of WMI classes. Notably Win32_LogonSession; which is related to Win32_Account via Win32_LoggedonUser). If creation events are supported for Win32_LogonSession then that would be a very effective method.

And how do you initiate a user logon from a Windows service?

The LogonUser API allows creating a new user token, you can then use that token for threads or processes. Using CreateProcessWithLogonW (and similar) allows the user name and password to be created to create a process under a different account (essentially LogonUser plus CreateProcessWithTokenW).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.