Startup Programs

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

Guest

Is there a way to get certain programs to load in a certain order on starup?
I'd like to have my firewall load first.
 
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

:
| Is there a way to get certain programs to load in a certain order on
starup?
| I'd like to have my firewall load first.
 
I don't know how to find my \startup directory and I don't know how to create
a shell script or where to write it. Sorry. Please help more.
 
What I posted was an example of such a script. You'll want to place it in;
%ALLUSERSPROFILE%\Start Menu\Programs\Startup
(probably C:\Documents and Settings\All Users\Start Menu\Programs\Startup)

for it to run no matter who is logged on.
%USERPROFILE%\Start Menu\Programs\Startup
(probably C:\Documents and Settings\Mark\Start Menu\Programs\Startup)
or here for it to run only when you're logged on.

--
Regards,

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

:
|I don't know how to find my \startup directory and I don't know how to
create
| a shell script or where to write it. Sorry. Please help more.
 
Back
Top