run the win app.exe when the windows start

  • Thread starter Thread starter Guest
  • Start date Start date
Add a new string entry in the under registry key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
example:
"notepad"="c:\winnt\notepad.exe" this will run notepad every time windows
start.

For a particular user replace the key HKLM(HKEY_LOCAL_MACHINE) with
HKCU(HKEY_CURRENT_USER).

another simple way is to put your program in programs->startup menu item.

Hope this helps.

-A
 
can i write in autoexec or config?



Arun said:
Add a new string entry in the under registry key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
example:
"notepad"="c:\winnt\notepad.exe" this will run notepad every time windows
start.

For a particular user replace the key HKLM(HKEY_LOCAL_MACHINE) with
HKCU(HKEY_CURRENT_USER).

another simple way is to put your program in programs->startup menu item.

Hope this helps.

-A

Joe said:
Dear all
How to run the window app automatically when the windows is started
 
Back
Top