gpt4 book ai didi

internet-explorer - 在PowerShell 3.0中使用Invoke-Webrequest会产生Windows安全警告

转载 作者:行者123 更新时间:2023-12-03 13:28:26 24 4
gpt4 key购买 nike

在PowerShell 3.0中使用以下代码时

PS> $data = Invoke-Webrequest -Uri stackoverflow.com
PS> $data.ParsedHtml.getElementsByTagName("div")

我收到此警告:

Windows Security Warning - To allow this website to provide information personalized for you, will you allow it to put a small file (called a cookie) on your computer?



我真的很想 禁止显示此消息或添加代码来处理cookie ,以便可以安排代码。

我尝试过信任IE中允许cookie的站点,甚至降低了“用户帐户控制设置”,但无济于事。

最佳答案

$data = Invoke-WebRequest http://stackoverflow.com -UseBasicParsing

它看起来像一个Internet Explorer提示符,这是因为Invoke-WebRequest可能是在使用Internet Explorer解析DOM。使用 -UseBasicParsing参数时,指示PowerShell使用其自己的解析器。由于某种原因,它似乎也隐藏了cookie提示。

关于internet-explorer - 在PowerShell 3.0中使用Invoke-Webrequest会产生Windows安全警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15211573/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com