Making one shortcut run two applications at once?

Locked
Guest

Making one shortcut run two applications at once?

Post by Guest »

Is it possible? How?
User avatar
Foo
Posts: 13840
Joined: Thu Aug 03, 2000 7:00 am
Location: New Zealand

Post by Foo »

Create a file whatever.bat

Open it with notepad and insert the path to the two .exe files you wish to run, one after the other, on seperate lines.

Then make a shortcut to that file.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
+JuggerNaut+
Posts: 22175
Joined: Sun Oct 14, 2001 7:00 am

Post by +JuggerNaut+ »

or just be hardcore and have the .bat on your desktop like a tr00 dork.
Guest

Post by Guest »

It doesn't work.

I put:

C:\Program Files\MSN Messenger\msnmsgr.exe
C:\Program Files\ICQLite\ICQLite.exe

in the file and it doesnt work. HELP ME FOO!!
User avatar
Foo
Posts: 13840
Joined: Thu Aug 03, 2000 7:00 am
Location: New Zealand

Post by Foo »

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!!
My bad. Try the lines above. neglected command prompt length restrictions.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
Guest

Post by Guest »

It runs MSN but then does nothing unless I close msn...
User avatar
Bacon
Posts: 1477
Joined: Sat Jul 31, 2004 7:00 am

Post by Bacon »

ToxicBug wrote:It runs MSN but then does nothing unless I close msn...
Holy shit are you that lazy you can't double click twice instead of once?

Edit: :icon26:
[b]CAPSLOCK IS ON[/b]
User avatar
Foo
Posts: 13840
Joined: Thu Aug 03, 2000 7:00 am
Location: New Zealand

Post by Foo »

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.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
Guest

Post by Guest »

arg, that .vbs/wsh doesn't work :( can you make it for me and send it or something?

C:\Program Files\MSN Messenger\msnmsgr.exe
C:\Program Files\ICQLite\ICQLite.exe
User avatar
Foo
Posts: 13840
Joined: Thu Aug 03, 2000 7:00 am
Location: New Zealand

Post by Foo »

Jus use the first one bud, I'm off to bed.

Someone will come along and fix it up. I was using the wrong syntax anyway, it's Shell( not call.
"Maybe you have some bird ideas. Maybe that’s the best you can do."
― Terry A. Davis
User avatar
raw
Posts: 2738
Joined: Tue Nov 16, 1999 8:00 am

Post by raw »

ToxicBug wrote:arg, that .vbs/wsh doesn't work :( can you make it for me and send it or something?

C:\Program Files\MSN Messenger\msnmsgr.exe
C:\Program Files\ICQLite\ICQLite.exe
Here, copy and paste this into a .bat file.

Code: Select all

@ECHO OFF
START /D"C:\Program Files\MSN Messenger" msnmsgr.exe
START /D"C:\Program Files\ICQLite" ICQLite.exe
Locked