AutoRun an Application when System On

ab_keje@yahoo.com

New member
Joined
Dec 7, 2010
Messages
4
Programming Experience
1-3
Hi, i developed a simple window form application and i want it to run immediately when sysem complete booting (autorun as user login to windows (OS))
 
you can just add a shortcut to your application to the start menu
but your application will only work if the user logs into their account

you can add the shortcut to this path if you using windows 7
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
 
Yes, add it to the start menu, or I think there may even be options available in 'scheduled tasks' in windows?

Optionally, you can add it in the registry, HKLM\SOftware\Microsoft\Windows\CurrentVersion\Run

Depending on how you do it, you may want to suspend the program when it loads at startup for a couple of seconds incase it loads before any other windows processes/apps which may be required.
 
Back
Top