How do I initiate a Windows XP user Log Off from a C# app? The action of my app should produce the same result as clicking "Log Off" in XP start menu -- it's fine if the system asks for a confirmation.
Is there a .Net or an unmanaged API for this?
|
|
|
You could P/Invoke ExitWindowsEx:
Pulling it all together:
|
||||
|
Try calling the "ExitWindowsEx" API function with the constant "EWX_LOGOFF" or 0. API Guide tells me that the second parameter is ignored. For instance,
|
|||
|
|
|
Cerebrus is right. There's more info here: Lock, Logoff, Reboot, Shutdown, Hibernate, Standby in .Net |
|||
|
|
|
For completeness, the simplest way I found is to call Shutdown.exe (included with Windows).
This is the answer Cerebrus suggested, just in C# form. |
||||
|
|
|
Or you can just call:
If you want the easy way out. I use the ExitWindowsEx myself. |
||||
|
|
|
You can't combine |
||||
|
|