Launching Multiple Progams At Once

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

Guest

There are several programs I'd like to be able to launch with a single click.
(E.g., Word, a Dictionary, a Thesaurus, other reference programs, etc.) Is
there an easy way to do this within Vista? (I want to create a shortcut that
launches them all.)

Comments:
(1) I don't always use them, so I don't want to put them into the Startup
folder.
(2) I've tried doing a batch file, but on some of the programs, Vista seems
to want for me to close out the previous program before it'll process the
next line in the batch file.

Thanks.
 
There are several programs I'd like to be able to launch with a single click.
(E.g., Word, a Dictionary, a Thesaurus, other reference programs, etc.) Is
there an easy way to do this within Vista? (I want to create a shortcut that
launches them all.)

Comments:
(1) I don't always use them, so I don't want to put them into the Startup
folder.
(2) I've tried doing a batch file, but on some of the programs, Vista seems
to want for me to close out the previous program before it'll process the
next line in the batch file.

Thanks.


If Vista's batch files are anything like XP's batch files, you will
need to launch the apps with the START command.

You could also try putting the shortcuts in a folder, selecting them
all and pressing enter. Just SWAG'ing here - but I know I have
accidently launched many apps and instances of apps by doing that.
 
In the batch file, use the "call" command to launch the apps. This will
start the desired program and immediately return control to the bat file.

call winword.exe
call excel.exe

Val
 
Thank you. I used the "start" command, finding its parameters by typing
"start /?" in a command window, and that did the trick. Thank you very much.

(I didn't try "call" because "start" seems to do what I need it to. The only
exception is that the "start /MAX" option doesn't seem to work on one of the
older programs I'm launching--but I'm happy now. Thanks again.)
 
The call command will not accomplish what is needed. Call will launch
a program and return control to the batch when the program closes. Any
issues with simultaneous launching will not go away. The start
command will spawn the application as a seperate action, allowing the
batch to resume immediately.
 
Oops, my bad.

It does work the inteneded way in XP, launching both apps.

Chalk this up as another way Vista breaks things.

Sigh,
Val
 
Oops, my bad.

It does work the inteneded way in XP, launching both apps.

Chalk this up as another way Vista breaks things.

Sigh,
Val







- Show quoted text -

I don't think call ever worked like that, but you may have lucked out
with the apps you are launching.
 
Back
Top