
如果 Internet Explorer 的安全區域由我的系統管理員管理,則受信任網站清單將被停用,且我無法捲動清單。有什麼方法可以查看受信任網站的完整清單嗎?
答案1
答案2
取決於您的公司,該清單是屬於 HKLM 還是 HKCU。這是獲取清單的快速 Powershell 命令
$(get-item "HKCU:\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMapKey").property
$(get-item "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMapKey").property
答案3
來自 powershell:
Get-itemproperty "hkcu:\Software\policies\microsoft\windows\currentversion\internet settings\ZoneMapKey"
答案4
我想出了以下解決方案,我希望其他人也能發現它有用。
我的權限有限,僅限本地,不足以GPEDIT
在 AD 層級開啟和檢視。
因此,我所做的和工作的就是打開命令提示字元(以管理員身份)並執行命令:
C:\WINDOWS\system32>GPResult /V /SCOPE Computer /H c:\temp\stuff.txt
然後執行搜索,例如“ZoneMapKey”
C:\WINDOWS\system32>find "ZoneMapKey" c:\temp\stuff.txt >> c:\temp\sites.txt
請記住,還有其他鍵可能需要您注意,例如“approvedactivexinstalsites”......
您將得到如下輸出:
KeyName: Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMapKey\https://www.wesayso.com
清理它(我使用 Excel,使用 \ 作為分隔符號並完成它),您將獲得一個很棒的清單。