Need help with basic batch file

B

Brad Morris

I am trying to write a batch file that will open 3 programs on my hard
drive.
I am running Win XP home. Here's the batch file


::start.bat
::starts multiple programs
::
@echo off

"C:\Program Files\QuickVerse Sermon Builder 4\qvsb4.exe"
"C:\Program Files\PC Magazine Utilities\Winpointer\WinPointer.exe"
"C:\Program Files\WordPerfect Office 12\Programs\wpwin12.exe"

what happens is that it will load the first program but will not load the
second one until the first one is closed. When I close the second program
the 3rd program will then load.

How do I get all three to load at once?
 
D

Dave Patrick

start "" "C:\Program Files\QuickVerse Sermon Builder 4\qvsb4.exe"
start "" "C:\Program Files\PC Magazine Utilities\Winpointer\WinPointer.exe"
start "" "C:\Program Files\WordPerfect Office 12\Programs\wpwin12.exe"

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
|I am trying to write a batch file that will open 3 programs on my hard
| drive.
| I am running Win XP home. Here's the batch file
|
|
| ::start.bat
| ::starts multiple programs
| ::
| @echo off
|
| "C:\Program Files\QuickVerse Sermon Builder 4\qvsb4.exe"
| "C:\Program Files\PC Magazine Utilities\Winpointer\WinPointer.exe"
| "C:\Program Files\WordPerfect Office 12\Programs\wpwin12.exe"
|
| what happens is that it will load the first program but will not load the
| second one until the first one is closed. When I close the second program
| the 3rd program will then load.
|
| How do I get all three to load at once?
|
|
 
B

Brad Morris

Ah. I had tried the start in the batch but was not including the double
quote before the paht/program. thanks for that!
 
D

Dave Patrick

You're welcome.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| Ah. I had tried the start in the batch but was not including the double
| quote before the paht/program. thanks for that!
 
B

Bob I

Hi Stan, increase the screen buffer for CMD properties and then you can
scroll back and forth.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top