Command Shell Startup

  • Thread starter Thread starter Pfass
  • Start date Start date
P

Pfass

I am booting up to the command shell and want to run my
app as soon as windows start. Anyone know how to run a
file when bootng to the command shell. thanks

paul
 
Pfass said:
I am booting up to the command shell and want to run my
app as soon as windows start. Anyone know how to run a
file when bootng to the command shell. thanks
My system does this. You need to put a run key into the registry. My system
includes the following which launches a configuration batch file. You can
import .reg files into component designer, so that if you're creating a
custom component for your application, you can add the reg key to make it
auto-run there.

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"Startup"="c:\\startup\\startup.bat"
 
Back
Top