我尝试使用PowerShell脚本在计算机上更改IE 11的主页。我在网上阅读的所有内容都显示了相同的脚本,但是当我执行它时,它并没有改变注册表中的值。有人可以帮我解决错误吗?
write "Setting google as IE homepage..."
$path = 'HKCU:\Software\Microsoft\Internet Explorer\Main\'
$name = 'start page'
$value = 'http://www.google.com/'
Set-Itemproperty -Path $path -Name $name -Value $value
答案 0 :(得分:0)
您必须在打开IE时确认底部消息