How to add 1.1.1.1 for Families to Windows 11?

I'm able to use 1.1.1.1 with Windows 11, but when I try 1.1.1.2 or 1.1.1.3 then Windows doesn't suggest any DNS over HTTPS template. How do I use 1.1.1.2 and 1.1.1.3 with Windows 11 without installing the WARP app?

1.1.1.3 as preferred DNS without automatic template

1 Answer

The DoH addresses are:

  • for malware blocking (1.1.1.2).
  • for malware and adult content blocking (1.1.1.3).

You can add these as automatic templates using the PowerShell cmdlet Add-DnsClientDohServerAddress (run as admin).

# Block malware
Add-DnsClientDohServerAddress 1.1.1.2
Add-DnsClientDohServerAddress 1.0.0.2
Add-DnsClientDohServerAddress 2606:4700:4700::1112
Add-DnsClientDohServerAddress 2606:4700:4700::1002
# Block malware and adult content
Add-DnsClientDohServerAddress 1.1.1.3
Add-DnsClientDohServerAddress 1.0.0.3
Add-DnsClientDohServerAddress 2606:4700:4700::1113
Add-DnsClientDohServerAddress 2606:4700:4700::1003 

Screenshot after adding them:

enter image description here

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like