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.
blockpolicy
About this tag
The blockpolicy tag covers issues related to DNS query resolution policies that block or filter domain access on Windows DNS servers. Content includes troubleshooting steps for removing a block policy using PowerShell commands such as Add-DnsServerQueryResolutionPolicy and Remove-DnsServerQueryResolutionPolicy. Users encountering persistent blocking after policy removal may need to verify policy deletion, restart the DNS server service, or check for residual policies. The tag is relevant for network administrators managing domain filtering and DNS security on Windows Server.
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...