Looking for a powershell to search/scrub all GPO's that have Internet Explorer Homepage.
Ive tried using this forum as an example but nothing returns.
https://community.spiceworks.com/topic/478406-searching-gpos-for-specific-key?started_from=new_topic
Text
Get-GPO -All | where {
Get-GPRegistryValue -Name $_.DisplayName -Key "HKCU\Software\Policies\Microsoft\Internet Explorer\Control Panel" -ValueName HomePage -ErrorAction SilentlyContinue}