在 Windows 10、Windows 11 中打开 IE 浏览器
新建 OpenIE.vbs 文件,输入以下内容后保存:
Set OpenIE = CreateObject("InternetExplorer.Application")
OpenIE.Visible = True
OpenIE.Navigate "about:blank"
双击 OpenIE.vbs 文件即可打开 IE 浏览器。
上面默认打开的是空白页面,如果想默认打开其它网站,修改OpenIE.Navigate "about:blank" 即可,如下:
Set OpenIE = CreateObject("InternetExplorer.Application") OpenIE.Visible = True OpenIE.Navigate "https://www.baidu.com/"
--

浙公网安备 33010602011771号