Run at system startup

  • Thread starter Thread starter Avi Farah
  • Start date Start date
A

Avi Farah

Folks,

Can anyone tell me how I can configure a process to run
when the system reboots? Preferably a .Net solution.

Cheers,
Avi
 
Hi,

Any program listed in the registry at
HKey_LocalMachine\Software\Microsoft\Windows\CurrentVersion\Run will run at
startup. Add a string value with Name and value equal to the programs path.

Ken
 
Another possibility is to define your application as a
Windows Service. In that way the system administrator can
set the process to start-up type as Manual, Automatic, or
disabled.
 
Back
Top