在一个Internet Explorer窗口中打开多个选项卡

时间:2015-10-03 12:52:12

标签: windows internet-explorer batch-file

我正在尝试创建一个批处理脚本,在iexplorer中打开2个网站(我需要使用IE)。

问题是,网址是在单独的IE窗口中打开的 是否可以在一个窗口中只有2个选项卡?

{{1}}

2 个答案:

答案 0 :(得分:1)

使用VBScript代码启动新的InternetExplorer.Application,并使用带有navOpenInNewTab = 2048标记的navigate2方法打开标签:

@echo off
findstr /r /c:"^::[^ ]" "%~dpnx0" > "%temp%\openIEtab.vbs"
cscript //b //nologo "%temp%\openIEtab.vbs"
del "%temp%\openIEtab.vbs"

::set IE = CreateObject("InternetExplorer.Application")
::IE.visible = true
::IE.navigate2 "google.com"
::IE.navigate2 "bing.com", 2048

还有powershell解决方案(example)。

答案 1 :(得分:0)

尝试在您尝试打开的第一个网站之后立即添加超时,就像这样。超时将等待您在action之后设置的任何秒数,这可能是您尝试使用/T命令完成的任务,除非您每次都需要ping特定地址。

ping