Windows Setup Guide¶
Configure QuietNet DNS on your Windows PC to block ads and trackers system-wide.
Windows 11 Native Setup¶
Windows 11 has built-in support for DNS over HTTPS (DoH).
Step 1: Get Your DNS Information¶
- Log in to your QuietNet dashboard
- Go to the Blocklists section
- In the "Your DNS Settings" card, note:
- Your DoH URL:
https://dns.quietnet.app/YOUR_API_TOKEN/dns-query
- IP Address:
103.107.50.10
Step 2: Configure DNS Settings¶
- Click on the Start Menu and open Settings
- Go to Network & Internet
- Select Wi-Fi or Ethernet (depending on your connection)
- Click on your active connection name
- Find DNS server assignment and click Edit
- Change from "Automatic" to Manual
- Set IPv4 to On
- For "Preferred DNS", enter
103.107.50.10
- Set "Preferred DNS encryption" to Encrypted only (DNS over HTTPS)
- In the "Preferred DNS server hostname" field, enter your DoH URL:
https://dns.quietnet.app/YOUR_API_TOKEN/dns-query
- Click Save
Windows 10 Setup (Using YogaDNS)¶
For Windows 10, we recommend using YogaDNS to set up DNS over HTTPS.
Step 1: Install YogaDNS¶
- Download YogaDNS from the official website
- Run the installer and follow the prompts
- Launch YogaDNS after installation
Step 2: Configure YogaDNS¶
- In YogaDNS, click the + button to create a new configuration
- Give it a name like "QuietNet"
- Click + Add server
- Select DNS over HTTPS as the protocol
- For Server address, enter your DoH URL:
https://dns.quietnet.app/YOUR_API_TOKEN/dns-query
- Click OK
- Ensure your new configuration is selected and click Apply
Browser-Specific Setup¶
If you prefer to use QuietNet only in your browser (rather than system-wide), follow these instructions:
Firefox¶
- Open Firefox and click the menu (≡) in the top-right
- Select Settings
- Scroll down to Network Settings and click Settings
- Scroll down and check Enable DNS over HTTPS
- Select Custom
- Enter your DoH URL:
https://dns.quietnet.app/YOUR_API_TOKEN/dns-query
- Click OK
Chrome/Edge/Brave¶
- Open your browser and enter this in the address bar:
chrome://flags/#dns-over-https
- Set DNS over HTTPS to Enabled
- Restart your browser
- Go to browser settings
- Search for "DNS" or "Security"
- Find "Use secure DNS" and enable it
- Select "Custom" and enter your DoH URL:
https://dns.quietnet.app/YOUR_API_TOKEN/dns-query
Using PowerShell (Advanced)¶
For advanced users, you can configure DoH using PowerShell:
# List network interfaces
Get-NetAdapter
# Replace "Wi-Fi" with your interface name from the list above
$interfaceAlias = "Wi-Fi"
# Set DNS server
Set-DnsClientServerAddress -InterfaceAlias $interfaceAlias -ServerAddresses "103.107.50.10"
# For Windows 11, configure DoH
if ([Environment]::OSVersion.Version.Build -ge 22000) {
Set-DnsClientDohServerAddress -InterfaceAlias $interfaceAlias -ServerAddress "103.107.50.10" -DohTemplate "https://dns.quietnet.app/YOUR_API_TOKEN/dns-query" -AllowFallback $false
}
Troubleshooting¶
DNS Settings Not Saving¶
- Run settings as administrator
- Temporarily disable antivirus/firewall and try again
- Check if your organization's policy blocks custom DNS
YogaDNS Issues¶
- Make sure you're using the latest version
- Try running YogaDNS as administrator
- Check if Windows Defender is blocking the application
Internet Connectivity Problems¶
- Temporarily disable QuietNet DNS to see if that resolves the issue
- Try flushing your DNS cache: open Command Prompt and run
ipconfig /flushdns
- Check if your ISP is forcing their DNS servers (some do)
Next Steps¶
- Verify your setup is working correctly
- Configure your blocklists to customize your filtering
- Set up QuietNet on your other devices