Multiple applications opening

  • Thread starter Thread starter M.Rich
  • Start date Start date
M

M.Rich

Hello, I would like to have 3 programs open at once with the click of one
Icon. I guess like a batch file. How can this be done.
Thanks in advance..
Mrich
 
M.Rich said:
Hello, I would like to have 3 programs open at once with the click of one
Icon. I guess like a batch file. How can this be done.
Thanks in advance..
Mrich

Create a batch file with the following lines inside, then use the
icon to run the batch file.

@echo off
start "c:\program files\microsoft office\office\winword.exe"
start "c:\program files\microsoft office\office\excel.exe"
start notepad.exe
 
Your reply is meaningless - nobody knows what you were
trying to launch. Post your full batch file here.
 
Sorry, and thanks.
I would like a batch file to open these 3 applications at once.
"C:\Program Files\Paint Shop Pro 6\Psp.exe"
"C:\Program Files\Adobe\Premiere 6.0\premiere.exe"
"C:\Program Files\Macromedia\Flash 5\Flash.exe"
 
Create a batch file as per my earlier post, and put the
word "start" in front of every program line.
 
Back
Top