从命令行打开IE,等待X秒,然后关闭IE

时间:2014-11-14 13:13:59

标签: batch-file cmd

我设法打开了IE,但下一个计划任务不会运行直到IE关闭。有没有办法说出来

Open IE with these parameters
Wait X Seconds
Close IE

Open IE with these different parameters
Wait X Seconds
Close IE

由于

2 个答案:

答案 0 :(得分:0)

start http://domain1.com
ping 1.1.1.1 -n 1 -w 60000 > nul
taskkill /f /im iexplore.exe

start http://domain2.com
ping 1.1.1.1 -n 1 -w 60000 > nul
taskkill /f /im iexplore.exe

这似乎对我的需求非常有效

答案 1 :(得分:-1)

尝试一下

Start iexplore http://domain1.com
TIMEOUT /T 10
taskkill /f /im iexplore.exe