Change the order start up applications

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you permanently change the order that a application starts when in the
HKLM\Software\Windows\CurentVersion\Run.
 
The 'Run' keys start asynchronously rather than sequentially. To start
applications sequentially create a shell script something like this and
place it in your \Startup directory.

-------------mystartup.cmd-------------
start "" "D:\Program Files\Microsoft Office\OFFICE11\outlook.exe"
start "" "D:\Program Files\Microsoft Office\OFFICE11\word.exe"
start "" "D:\Program Files\Microsoft Office\OFFICE11\excel.exe"
---------------end file------------------

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| How do you permanently change the order that a application starts when in
the
| HKLM\Software\Windows\CurentVersion\Run.
 
hanks Dave,

Lets say I have five programs that I want to start at start up in certain
order. Would a shell script still be the way. Thanks again.

Cynthia
 
Yes.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| hanks Dave,
|
| Lets say I have five programs that I want to start at start up in certain
| order. Would a shell script still be the way. Thanks again.
|
| Cynthia
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top