You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
removepolicy
About this tag
The removepolicy tag covers discussions about removing DNS query resolution policies on Windows Server. In one thread, a user applied a block policy using Add-DnsServerQueryResolutionPolicy to block a domain, then attempted to remove it with Remove-DnsServerQueryResolutionPolicy. After removal, the domain remained inaccessible, indicating that the policy removal did not take effect as expected. The topic involves troubleshooting policy removal, DNS server configuration, and PowerShell cmdlets for managing resolution policies. Users may encounter issues where policies persist after removal, requiring further investigation into policy caching or additional cleanup steps.
Hello there, I added some domain name to be blocked in my network and I used the following command to do that:
Add-DnsServerQueryResolutionPolicy -Name "BlockListPolicy" -Action IGNORE -FQDN "EQ,*.somedomain.com" -PassThru
After I have done that in powershell that domain is filtered out not to...