multiple target in one shortcut

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

Guest

hello.. how could i make multiple target in one shortcut? well, i could have
placed 1 shortcut in the desktop to open up several application so i wouldnt
have to open each and every application at a time.. thx..
 
taipan541 said:
hello.. how could i make multiple target in one shortcut? well, i could have
placed 1 shortcut in the desktop to open up several application so i wouldnt
have to open each and every application at a time.. thx..

Place the target lines for the various applications into
a batch file, then use the shortcut to launch the batch
file.
 
Pegasus (MVP) said:
Place the target lines for the various applications into
a batch file, then use the shortcut to launch the batch
file.

err, could u elaborate more please.. i dont quite understand especially
creating the batch file part.. perhaps any example please..thanks..
 
taipan541 said:
err, could u elaborate more please.. i dont quite understand especially
creating the batch file part.. perhaps any example please..thanks..

- Click Start / Run
- Type notepad c:\Windows\MyApps.bat {OK}
- Paste the following lines into notepad:
@echo off
start "Word" "c:\program files\microsoft office\office11\winword.exe"
start "Excel" "c:\program files\microsoft office\office11\excel.exe"
- Save and close the file
- Create a shortcut to c:\windows\MyApps.bat

I copied the program names and locations from the "Target"
field of the specific shortcut into this batch file.
 
thx.. love u..bbye..

Pegasus (MVP) said:
- Click Start / Run
- Type notepad c:\Windows\MyApps.bat {OK}
- Paste the following lines into notepad:
@echo off
start "Word" "c:\program files\microsoft office\office11\winword.exe"
start "Excel" "c:\program files\microsoft office\office11\excel.exe"
- Save and close the file
- Create a shortcut to c:\windows\MyApps.bat

I copied the program names and locations from the "Target"
field of the specific shortcut into this batch file.
 
Back
Top