我尝试从初始启动IE中绕过Windows IE setting pop up。关闭窗口或稍后点击询问。 Powershell可以检查窗口对象吗?我尝试了下面的“New-Object”:
New-Object -ComObject 'internetExplorer.Application'
但它似乎没有像我预期的那样工作。
由于
答案 0 :(得分:0)
使用群组策略是不可能的,因为这可以通过gpo轻松完成。这是一个链接解释。 https://mkcheah88.blogspot.com/2014/06/microsoft-how-to-disable-internet.html
如果不是可以更改注册表项,则在Internet Explorer打开之前链接到PowerShell?如果是这样,我可以修改这个答案以包含答案。
答案 1 :(得分:0)
对于那些寻找Registry方法(或Powershell)的人,这是我使用的脚本:
$keyPath = 'Registry::HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Main'
if (!(Test-Path $keyPath)) {
New-Item $keyPath -Force
}
Set-ItemProperty `
-Path $keyPath `
-Name "DisableFirstRunCustomize" `
-Value 1
您要先测试路径是否存在,因为使用-Force
上的New-Item
参数将删除提供的路径的所有现有子元素。