Archived from groups: microsoft.public.windowsxp.general (
More info?)
"Brad Morris" <bradmorris@mchsi.com> wrote in message
news:OECMK00sFHA.3236@TK2MSFTNGP10.phx.gbl...
> I must be doing something wrong or ... I want each of these to load into
> windows. What happens when I run the following batch recommended by Dave
> (Thanks Dave for your reply) is that a DOS window opens up and On the top
> bar of this new window it will say <path\Program Name>
> next line drops down to a c:\documents and Settings\Brad Morris\Desktop>
> prompt and nothing happens.
> I have two other Dos prompts for each of the other programs on my task bar
> at the bottom and they are doing nothing either.
> Any other suggestions? (Running WinXP PRO)
>
>
> "David H. Lipman" <DLipman~nospam~@Verizon.Net> wrote in message
> news:e6UuIQ0sFHA.2008@TK2MSFTNGP10.phx.gbl...
> > From: "Brad Morris" <bradmorris@mchsi.com>
> >
> > | Can anyone tell me why this batch file won't load each of the files in
> > | order?
> > |
> > | It doesnt seem to do anything (other than a command line propmpt
flashes
> > on
> > | the screen and disappears BUT nothing loads).
> > |
> > | ::start.bat
> > | ::starts multiple programs
> > | ::
> > | @echo off
> > |
> > | 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"
> > |
> > | Thanks
> > |
> >
> >
> > Change it to...
> >
> > @echo off
> > START /wait "C:\Program Files\QuickVerse Sermon Builder 4\qvsb4.exe"
> > START /wait "C:\Program Files\PC Magazine
> > Utilities\Winpointer\WinPointer.exe"
> > START /wait "C:\Program Files\WordPerfect Office
12\Programs\wpwin12.exe"
> >
> > The above will run each utility one at a time. The second won't start
> > until the first one
> > ends and the third won't start until the second one ends.
> >
> > If you don't want to wait between each utility being loaded...
> >
> > @echo off
> > START /min "C:\Program Files\QuickVerse Sermon Builder 4\qvsb4.exe"
> > START /min "C:\Program Files\PC Magazine
> > Utilities\Winpointer\WinPointer.exe"
> > START /min "C:\Program Files\WordPerfect Office 12\Programs\wpwin12.exe"
> >
> > --
> > Dave
> >
http://www.claymania.com/removal-trojan-adware.html
> >
http://www.ik-cs.com/got-a-virus.htm
> >
> >
>
>
Try this modified version of David's batch file:
@echo off
START /wait "QVSB4 Process" "C:\Program Files\QuickVerse Sermon Builder
4\qvsb4.exe"
START /wait "WinPointer" "C:\Program Files\PC Magazine
Utilities\Winpointer\WinPointer.exe"
START /wait "WPWin12" "C:\Program Files\WordPerfect Office
12\Programs\wpwin12.exe"
Your problem occurred because the first string between quotes is supposed
to be the process name. Type start /? for full details.