Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write a win app,and i want to get the time of login/logout of any users in my local network.how can i make this app that starts when the user turn on the windows is becomming run,i don't want to put in startUp folder. I want if the user loging off my app become close and then the user login it becoms run.

share|improve this question
What exactly is wrong with the Startup folder? That's what it's for. – Cody Gray Mar 7 '11 at 7:03

1 Answer

up vote 1 down vote accepted

You can put a record into the windows registry at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

You can use the SessionEnding event to detect when a user is logging off

static void Main()
{
    Microsoft.Win32.SystemEvents.SessionEnding += new Microsoft.Win32.SessionEndingEventHandler(SystemEvents_SessionEnding);
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());
}

static void SystemEvents_SessionEnding(object sender, Microsoft.Win32.SessionEndingEventArgs e)
{
    // Do something
}
share|improve this answer
you mean i should put my *.exe file in this "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" is it true??and it becomes run every time the user login?? – Farna Mar 7 '11 at 6:27
Just put the path to the executable file. You don't need to copy the whole file content into the registry. – Fun Mun Pieng Mar 7 '11 at 6:55
thank you very much,how can i set the path of installed my app's exe to the registry wit my app or setup file???? – Farna Mar 7 '11 at 7:31
you can set it using the following code. Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\Cu‌​rrentVersion\Run"); rk.SetValue("MyAppName", @"C:\WhereMyAppIs\MyApp.exe"); Or you can get the installer to set it. – Fun Mun Pieng Mar 7 '11 at 8:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.