INNO通过强制策略让edge锁定搜索引擎 不再重置 中发帖

不知道各位佬友有没有发现edge老是莫名其妙把你的搜索引擎改回bing 🫪研究了一下问了问g老师 在powershell运行以下代码可以防止edge老是自己改bing 🫠希望对大家有帮助 :tieba_002: 

New-Item -Path $EdgePolicy -Force | Out-Null

New-ItemProperty `    -Path $EdgePolicy`
-Name "DefaultSearchProviderEnabled" `    -PropertyType DWord`
-Value 1 \`
-Force | Out-Null

New-ItemProperty `    -Path $EdgePolicy`
-Name "DefaultSearchProviderName" `    -PropertyType String`
-Value "G...
 
 
Back to Top