I would like to ask why my batch script that opens multiple web pages can only open one web page?
I executed the following batch script
@echo off
set ie="C:\Program Files\Internet Explorer\IEXPLORE.EXE"
%ie% www.cn-dos.net/dosbbs/list.asp?boardid=9
%ie% www.lasg.ac.cn/cgi-bin/forum/leoboard.cgi
%ie% bbs.chinaunix.net/forum/viewforum.php?f=24
:: ... Add all the websites you need to open in the above way
set ie=
exit
As a result, after executing for a long time, only the first web page is opened, and the DOS command port keeps flashing and does not close.
While in another DOS window, I can use the command to open the above websites one by one?
Why? I hope for your advice, thanks in advance!
I executed the following batch script
@echo off
set ie="C:\Program Files\Internet Explorer\IEXPLORE.EXE"
%ie% www.cn-dos.net/dosbbs/list.asp?boardid=9
%ie% www.lasg.ac.cn/cgi-bin/forum/leoboard.cgi
%ie% bbs.chinaunix.net/forum/viewforum.php?f=24
:: ... Add all the websites you need to open in the above way
set ie=
exit
As a result, after executing for a long time, only the first web page is opened, and the DOS command port keeps flashing and does not close.
While in another DOS window, I can use the command to open the above websites one by one?
Why? I hope for your advice, thanks in advance!


