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
1answer
913 views
Logoff interactive users in Windows from a service
I'm trying to figure out a way to log off users in local Windows sessions from a Windows Service written in C#.
Here's the background to the problem:
I need to manage the computer usage time of a set ...
1
vote
2answers
226 views
Run as SYSTEM and logoff user “USER” Pin
I have a program that runs as a scheduled task. The program runs on XP as SYSTEM.
The idea is that the program will run in the background, while USER is active.
I need the program to logoff USER when ...
1
vote
2answers
2k views
How to capture Logoff event using a windows service in C#?
I am trying to create a service that will log when users logon and logoff. I have no problem with capturing the logon, but for some reason i cannot catch the logoff event. this is the code i have ...
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 ...
0
votes
1answer
46 views
How does one programmatically add a logon/logoff/startup/shutdown script to a GPO via c#?
So I've been able to make use of the GPMC library to add GPO's and link them to OU's. However my program needs to be able to attach logon/logoff/etc scripts to the GPO User/Computer configuration. I ...