通过 PowerShell 在 Windows Server 上禁用 IE 安全性
这种情况经常发生,我用 Windows 服务器启动虚拟机,但由于 IE 安全性,我无法访问互联网。有没有人有一个直接的 PowerShell 脚本来禁用 IE 安全性?
it happens all the time, I spin up a vm with windows server and I can't access the internet because of IE security. Does anyone have a straight-forward PowerShell script for disabling IE security?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入 .ps1 文件中,
然后在提示符下键入句点、空格和文件路径
像这样:
然后你可以在提示符下调用命令:
drop this into a .ps1 file
then at the prompt type a period, a space and the path to the file
something like this:
Then you can call the command at the prompt:
以下修改添加了 -Force 参数以避免任何确认。当提示我确认我想要结束“资源管理器”进程时,系统提示我执行此操作。
The below modification has added -Force parameters to avoid any confirmations. I was prompted to do this when prompted to confirm that I wanted to end the "explorer" process..