Startup Programs

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.
 
D

Dave Patrick

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.
 
G

Guest

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.
 
D

Dave Patrick

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.
 

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

Top