|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (2 bit)
Join Date: Aug 2008
Posts: 2
|
DOS Batch Question
I have a batch file that launches several http sites in sequence. However, it will not launch the second link until the first page is closed. I need them all to be launched at once. Ideas?
here is an example: C:\Progra~1\intern~1\Iexplore.EXE "http://linecontrol.ric.qimonda.com/reports/Daily Reports/DGRAndWIPMain.asp?CSS_size="" (will not proceed to the next line of the bat file until first window is closed) C:\Progra~1\intern~1\Iexplore.EXE "http://linecontrol.ric.qimonda.com/Reports/Daily Reports/DGRAndWIPMain_80P.asp?CSS_size=" |
|
|
|
|
|
#2 |
|
Ride 'em Cowboy
Join Date: Dec 1999
Location: Dallas, Tx
Posts: 9,109
|
Just a guess but -> First one has "" at the end - remove one...
__________________
Stand Up 2 Cancer - SU2C |
|
|
|
|
|
#3 |
|
Come in Ray...
Join Date: Sep 2004
Posts: 1,668
|
That is normal behavior of a batch file. Each line waits until the previous is totally completed before executing. In this case the "iexplore" command is not completed until the browser is closed.
Try prefacing each command with the START dos command (for help on this command run "start /?" from the command line). That should do the trick. |
|
|
|
|
|
#4 |
|
Member (2 bit)
Join Date: Aug 2008
Posts: 2
|
Thanks. the 'start' did the trick!!
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|