Is there a way to force a logoff (knowing this is not recommended) of the current interactive (logged-on) user and then login with a new user account (interactive - not using stuff like LogonUser and other impersonation tricks) to simulate someone physically pressing LOGOFF and then selecting a new account to LOGON...?

The issue is that my service creates a new user account programatically - and I need to find a way to create its corresponding user profile. From what I can see the only way that works would be to physically logoff the current user, and then login as the new user (which will create the User Profile for HKCU, Documents & Settings, etc...). Sounds a little crazy but I can't find a better way...

So, I need to find a way to programmatically force the logoff & logon actions (from my running Windows Service under LocalSystem) - I have all the credentials and access rights needed ... Are there system function calls I can use?

For Logoff I think I can use WTSLogoffSession(...), still trying to get it to work but seems promising - however I have no clue what to do about logon... Alternitively if there is a better approach to solve my problem I am all ears :)

Any help or hints would be much appreciated... Thanks,

link|improve this question

55% accept rate
1  
Is there a valid reason for creating a user account programatically? – Adam Ralph Sep 26 '09 at 17:39
Is there a valid reason to force someone to log off? – Thomas Owens Sep 26 '09 at 17:51
Only so that I can then logon with the other user and force the User Profile (HKCU, Documents & Settings, etc...) to be created... I couldn't find a better way ... – Shaitan00 Sep 26 '09 at 19:36
feedback

2 Answers

up vote 0 down vote accepted

Microsoft has this solution in c++, which you can use to hack a c# solution, or put in a DLL and call it using COM interop.

http://support.microsoft.com/kb/196070

link|improve this answer
Tried that one - and it doesn't seem to work on my systems (both Windows 2000 Pro and Win XP SP2) - I get no errors or exceptions, the account is created, LoadProfile runs - but the User Profile is simply not created. – Shaitan00 Sep 26 '09 at 20:00
Never mind - I think it is resolved now - I was mis-loading some parameters... – Shaitan00 Sep 26 '09 at 20:27
How do you do this C#? – jaysonragasa Mar 12 '10 at 7:12
feedback

Do you actually need to logon the user or just create one? For creation you can use

  • NetGroupAdd()
  • NetUserAdd()
  • NetGroupAddUser()
  • NetLocalGroupAdd()
  • NetLocalGroupAddMember()

APIs

link|improve this answer
But from what I know - none of these will create the USER PROFILE for you ... they will logon as the user (which works fine) but no Documents and Settings, no HKEY CURRENT USER, etc... until an interactive login happens (from what I have seen). Or do one of those methods you list do something special? I have not tried each one yet ... – Shaitan00 Sep 26 '09 at 18:33
support.microsoft.com/kb/196070, LoadUserProfile should do the trick – AlexEzh Sep 26 '09 at 21:08
feedback

Your Answer

 
or
required, but never shown

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