I am building a window application in C# which will notify me when any switch user happen. Right now m using "SessionSwitch" event to get the notification.
private void startLisning()
{
Microsoft.Win32.SystemEvents.SessionSwitch +=new Microsoft.Win32.SessionSwitchEventHandler(SystemEvents_SessionSwitch);
this.eventHandlerCreated = true;
}
private void SystemEvents_SessionSwitch(object sender, EventArgs e)
{
System.IO.File.AppendAllText(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "testtest.txt"), "SwitchUser\t" + DateTime.Now.ToString() + Environment.NewLine);
}
But in this case it also sending notification when "UNLOCK" is happen . Which I don't want. I only need when any user do switch user in his system my application should get the notification and log it to log file. It should only log when lock or switchUser happen.
Thanks in advance.
This will notify when "switch user" happen and also notify when the "user resume" . 'SessionSwitchReason.ConsoleDisconnect' is the event which fire when any switch user happen . This code is tested in windows7 and it working fine.
This code create a "testtest.txt" log file in Appdata folder. U can reach there by using Window+r and search '%appdata%'.
It log notification as below : 1. LOGIN with datetime 2. LOCK with datetime 3. UNLOCK with datetime 4. SWITCH USER with datetime 5. SWITCH USER RESUME with datetime