powershell 指令存檔請使用 .ps1 副檔名
msedge.exe –compatibility-mode
设置兼容性模式的网站URL
$websiteUrl = “https://example.com”
定义兼容性模式的注册表路径
$regPath = “HKCU:\Software\Microsoft\Internet Explorer\BrowserEmulation\ClearableListData\$websiteUrl”
创建兼容性模式的注册表项
New-Item -Path $regPath -Force | Out-Null
设置兼容性模式的值数据
Set-ItemProperty -Path $regPath -Name Flags -Value 0x4 -Type DWORD | Out-Null
输出成功信息
Write-Host “已将网站 $websiteUrl 添加到兼容性模式。”