program on startup

  • Thread starter Thread starter Guest
  • Start date Start date
thanks for the reply, but i forgot to mention that i would like it to be how
every other program starts up on bootup.
 
Hello,

For this you will have to make an entry in the Windows Registry.

Your most likely entrypoint would be

HKLM\Software\Microsoft\Windows\CurrentVersion\Run

Regards
Cyril Gupta
 
Define 'how every other program starts up on bootup' and define 'every other
program' and you might get a response or two.
 
sorry about my lack of information...like im creating a program that i want
to run every startup...it just watches all processes and exits some that the
user specifies. i want it to be running the background from when the computer
boots up to when it shuts down without the user havignt o do anything. for
instance, i want it to startup like an anti-virus program would, directly on
the bootup
 
Cyril wrote :
For this you will have to make an entry in the Windows Registry.
Your most likely entrypoint would be
HKLM\Software\Microsoft\Windows\CurrentVersion\Run

Hi Cyril,

That is not an option I would recommend, since it blatantly violates
the principle of Least Privilege. (You would need Admin access to write
to that key in the Registry)

(Though there are enough violators out there to make it acceptable in
most eyes !)

Regards,

Cerebrus.
 
awsome, thanks, thats just what i was looking for. and cerebus, il keep that
in mind also, thanks
 
Sounds too much like a Windows Service. And Windows services can be set to
startup automatically after installation.
I suggest you do some research on development of Windows Services.

Regards,

Cerebrus.
 
Back
Top