Unsolved
This post is more than 5 years old
1 Rookie
•
94 Posts
0
8224
August 22nd, 2005 20:00
three programs in one?
I was wondering if there is a way I can create a shortcut on my desktop that could open two or three programs at once? I read somewhere that using WordPad and other programs like that, you can do a lot of cool stuff with Windows. This probably is either too ridiculous to do, or simple to some experts. Thanks for the help.
No Events found!


chuket
1.4K Posts
0
August 22nd, 2005 22:00
bklevan
edited:
Yes there is. For example, copy the bold text below to Notepad and 'save as' test.bat to the desktop. It will open IE and OE. This is only an example and most any program can be set up this way:
start http://www.msn.com/
start /max msimn.exe
start /max notepad.exe
Message Edited by chuket on 08-22-2005 09:24 PM
bklevan
1 Rookie
•
94 Posts
0
August 23rd, 2005 01:00
rollainm
330 Posts
0
August 23rd, 2005 02:00
chuket
1.4K Posts
0
August 23rd, 2005 03:00
bklevan
Send the Encarta app to the desktop as a shortcut. When you can get it to open from the desktop, right-click on it, then ☞ properties and post the 'target' back here.
bklevan
1 Rookie
•
94 Posts
0
August 23rd, 2005 16:00
RoHe
12 Elder
•
45.2K Posts
•
172.6K Points
0
August 23rd, 2005 19:00
On the very first line put:
@echo off
On the very last line put:
exit
Put all your start commands in between those 2 lines.
Ron
chuket
1.4K Posts
0
August 24th, 2005 00:00
bklevan
Try this, add this bold text below to the previuos test.bat file to see if it runs:
CD "C:\Program Files\Microsoft Encarta\Encarta Encyclopedia Standard Edition 2004"
start encarta.exe
It should look like this:
start iexplorer.exe
start /max msimn.exe
start /max notepad.exe
CD "C:\Program Files\Microsoft Encarta\Encarta Encyclopedia Standard Edition 2004"
start encarta.exe
cls
exit
If Encarta ran as a shortcut as mentioned in my previuos post, it should open now in the BAT file. BTW, you can name test.bat to anyname.bat as long as it has the .bat extension.
bklevan
1 Rookie
•
94 Posts
0
August 24th, 2005 00:00
chuket
1.4K Posts
0
August 24th, 2005 02:00
bklevan
Glad you're up and running. The previous examples were just for demonstration purposes. In the test.bat file we created, you can delete or REM out any entry (line) you don't want to start by adding REM and a space before the line as below. Once it is running without an error, you can add @echo off as the first line to make the whole process invisable:
@echo off
rem start iexplore.exe
rem start /max msimn.exe
rem start /max notepad.exe
CD "C:\Program Files\Microsoft Encarta\Encarta Encyclopedia Standard Edition 2004"
start encarta.exe
cls
exit
If you want to post the App's you want to open in addition to Encarta, post back with the targets unless you've figured it out by yourself.
Message Edited by chuket on 08-24-2005 12:11 AM
RoHe
12 Elder
•
45.2K Posts
•
172.6K Points
0
August 24th, 2005 03:00
Create a desktop shortcut to your .bat file. Right click that shortcut icon and select properties. Set Run to Minimized
Now when you double-click the shortcut, you'll see an entry on the taskbar like you do for any minimized window. It will be there just long enough for the .bat file to run. As soon as it executes the last line ("exit") the program will end and the entry disappears from the taskbar. That way, you'll barely notice the bat file running. And the desktop stays neat and clean while all those other applications are opening.
Ron
Message Edited by RoHe on 08-23-2005 09:55 PM