11
2025
10

WIN10、WIN11启动运行IE浏览器

win10的KB5022834补丁后,微软关闭了IE浏览器的使用

可以通过如下脚本强制运行IE浏览器,将如下代码保存为.vbs后缀,运行即可

Set openIE=CreateObject("InternetExplorer.Application")
openIE.Visible = TRUE
openIE.navigate "http://127.0.0.1"
Set openIE = Nothing
[查看全文]