Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
2answers
215 views

Saving the time the user is logged on

In the application I am developing I have to store the time some particular users remain logged into the application, unfortunately, in web applications there are several ways the user can log off. ...
3
votes
1answer
905 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 ...
3
votes
2answers
642 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 ...
2
votes
2answers
390 views

How does log off work in DNN 5.x?

We are seeing an issue where the Session isn't being abandoned in DNN. I'm not sure if this is was a 4.5.x issue as we upgraded a while ago to 5.x and maybe referencing an older control. The ...
1
vote
2answers
50 views

Windows logoff using Python

Which Python function should I use, to log off current user. I found an example that is locking my pc, like Win+L combination ctypes.windll.user32.LockWorkStation () but I need a similar function, ...
1
vote
3answers
93 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
204 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
3answers
227 views

Prevent Dialog Box From Preventing User Log Out?

We have a simple .app made with applescript editor that pops up a display dialog box when a user logs in. The problem is that many users ignore the box and don't press "ok" to close it. If it's left ...
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
860 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
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
1answer
251 views

In Linux, how do I log a user out after idle period, even when they are still in a program

I am trying to enforce a policy that logs an idle user out of a bash shell session, even when they are in an active process like a script-based menu, or vi session. I have tried using "export ...
1
vote
2answers
156 views

On a Mac how to determine a user logout is occuring

I am very new to the Mac platform and Objective-C in general and in my application I would like to know how to determine that a user is logging out and perform some actions prior to this. Any info or ...
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
4answers
424 views

Cross-browser windows forms logoff?

Looking for a cross-browser way to log a user off a webpage which uses windows authentication.
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 ...
1
vote
8answers
2k views

Logoff script to change user

Using Windows 2003, I'm look for a way to create a "logoff script" that will continue with the current logoff then immediately login another user. So, "UserA" logs off. Script fires to login ...
1
vote
2answers
4k views

remotely and programatically logoff an active domain user

I need to be able to logoff any user from his windows session from a program. I know I could log in as an admin and force a remote logoff. Is there any other way to force a logoff without logging ...
0
votes
0answers
36 views

SetSuspendState() hangs up, why?

I was wondering why the following happens? I need to log off users and then put computer to sleep. I do the following (C++/WinAPI): (Calling the following from the local system service): ...
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 ...
0
votes
0answers
78 views

VBScript to close windows, log off and log back on

I realize that this might sound ambiguous at first, but just hear me out. I need a vbscript to either run locally or remotely to close some windows (I have already done it locally with sendkeys) and ...
0
votes
0answers
46 views

Group Policy Logoff Script

I am writing a log off script that queries an existing database for a specific row to update. I want to capture the result of sql query that identifies the specific row to update log off time. Here is ...
0
votes
1answer
339 views

User session timeout force logoff

I have been doing a little research on how to make a script using vbs or batch to set a session time limit for users logging onto a specific set of computers linked through Group Policy. I am not ...
0
votes
0answers
114 views

I need to store logon and logoff time for users on a computer

I need to store logon and logoff time for users with C#. I searched and understand there are many ways/considerations (i.e. security, directories, etc.) but some of them didn't have namespaces that I ...
0
votes
1answer
151 views

How to count the time a Windows users is logged in (VC++)

I am writing a Windows service for doing Parental Control (Visual C++). I am having trouble with the following: how to count the time a Windows user has been logged on today (time measured in hours) ...