我们正在创建一个 Windows EC2 实例,在管道中安装网关,然后手动注册 Microsoft 本地网关。注册网关时,需要在 IE 中启用 cookie。我们在 IE 中手动启用 cookie。我们希望自动化此步骤并将其包含在管道中。有人可以建议一个 powershell 脚本来启用 IE 中的 cookie 吗?
我目前启用 cookie 的方式如下:
Select 'Internet Options' from the Tools menu.
Click on the 'Privacy' tab.
Select the 'Advanced' button
Under 'First-party Cookies' and 'Third-party Cookies', choose Accept
Select 'OK' when done
试试这个:
# Path to Internet Explorer's Privacy settings in the Windows registry
$registryPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3"
# Set the value for '1A10' to controls cookies
# 0 = Allow all cookies, 1 = Block all cookies, 2 = Prompt for cookies
Set-ItemProperty -Path $registryPath -Name "1A10" -Value 0