Making one shortcut run two applications at once?
-
- Posts: 22175
- Joined: Sun Oct 14, 2001 7:00 am
My bad. Try the lines above. neglected command prompt length restrictions.ToxicBug wrote:It doesn't work.
I put:
C:\Progra~1\MSNMes~1\msnmsgr.exe
C:\Progra~1\ICQLite\ICQLite.exe
in the file and it doesnt work. HELP ME FOO!!
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
― Terry A. Davis
hah, cracked it:
start "" "c:\program files\equake\fqstart.exe"
start "" "d:\filezilla\filezilla.exe"
replace the programs, obviously. But this lets you have full file names, and the window will close itself on completion.
You can also make a .vbs/wsh file and use:
call "c:\program files\equake\fqstart.exe"
call "d:\filezilla\filezilla.exe"
if the black box pisses you off.
start "" "c:\program files\equake\fqstart.exe"
start "" "d:\filezilla\filezilla.exe"
replace the programs, obviously. But this lets you have full file names, and the window will close itself on completion.
You can also make a .vbs/wsh file and use:
call "c:\program files\equake\fqstart.exe"
call "d:\filezilla\filezilla.exe"
if the black box pisses you off.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
― Terry A. Davis
Here, copy and paste this into a .bat file.ToxicBug wrote:arg, that .vbs/wsh doesn't workcan you make it for me and send it or something?
C:\Program Files\MSN Messenger\msnmsgr.exe
C:\Program Files\ICQLite\ICQLite.exe
Code: Select all
@ECHO OFF
START /D"C:\Program Files\MSN Messenger" msnmsgr.exe
START /D"C:\Program Files\ICQLite" ICQLite.exe