Linik Porgram opening

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

Guest

Hi, i was wondering if there is any way of opening two programs at the same
time but from one shortcut? any ideas or suggestings would be great!

Thanks.,

Barry
 
To start applications sequentially create a shell script something like
this.

-------------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
 
Replied to [Bazcraig]s message :
Hi, i was wondering if there is any way of opening two programs at the same
time but from one shortcut? any ideas or suggestings would be great!

Thanks.,

Barry


No but you can use script :
Make a new bat file in C:\Windows\ with following lines :
start "" %1
start "" %2

Now you can create a shortcut and give the program names as parameter :
nameOfBatFile "Program 1 Path" "Program 2 Path"
 
Bazcraig said:
Hi, i was wondering if there is any way of opening two programs at
the same time but from one shortcut? any ideas or suggestings would
be great!


Yes. Write a batch file and invoke them both in the batch file. Then create
and use a shortcut to that batch file.
 

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