Change the order start up applications

G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

How do you permanently change the order that a application starts when in the
HKLM\Software\Windows\CurentVersion\Run.
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

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

"Cynthia" wrote:
| How do you permanently change the order that a application starts when in
the
| HKLM\Software\Windows\CurentVersion\Run.
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

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

"Dave Patrick" wrote:

> 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
>
> "Cynthia" wrote:
> | How do you permanently change the order that a application starts when in
> the
> | HKLM\Software\Windows\CurentVersion\Run.
>
>
>
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

Yes.

--
Regards,

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

"Cynthia" wrote:
| 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
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

Thanks. It did the trick.

"Dave Patrick" wrote:

> Yes.
>
> --
> Regards,
>
> Dave Patrick ....Please no email replies - reply in newsgroup.
> Microsoft Certified Professional
> Microsoft MVP [Windows]
> http://www.microsoft.com/protect
>
> "Cynthia" wrote:
> | 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
>
>
>
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.perform_maintain (More info?)

Glad to hear it. You're welcome.

--
Regards,

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

"Cynthia" wrote:
| Thanks. It did the trick.