Tagged Questions
18
votes
6answers
5k views
Log off user from Win XP programmatically in C#
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 ...
3
votes
2answers
644 views
Adding a logoff script
I have some scripts that I would like to run every time a user logs off. I would like to create something that programatically sets up the logoff scripts. For example, an exe or a cmd file that can be ...
1
vote
3answers
94 views
Stop application when user initiates a log off / shutdown operation
I have this application (Windows form application written in Visual C++) from a colleague of mine and I face some serious problems. The application is neither a service neither a normal application, I ...
1
vote
4answers
205 views
How to capture that session logoff started from windows service
I have a service which constantly checks some application and assures that it wasn't closed. If this app closed - service launches it again.
The problem starts when user decides to log off the ...
1
vote
2answers
218 views
Under Windows, how can you identify the current console user and then do a logoff against that user?
I need the ability in C++ code to logoff the console user when call from an administrator process or if it is called by that user and maybe a windows service in the future. The issue I am running into ...
1
vote
3answers
870 views
How do I logout from vbscript?
I'm using a VBScript to run an application on my Win Server 2003, and I want it to log the user off after a set amount of time. Something along the lines of:
Set WshShell = ...
1
vote
6answers
428 views
Why does an application running as the system account on windows when logging off
I have a c# application which is launched under the System account on a machine and presents some dialogs to a user. When a regular user logs off the application is terminated as well. I would have ...