Skip to content

Commit af17430

Browse files
ChrisTitusTechgithub-actions[bot]
authored andcommitted
Compile Winutil
1 parent d261f42 commit af17430

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

winutil.ps1

+31-10
Original file line numberDiff line numberDiff line change
@@ -2606,6 +2606,7 @@ function Set-WinUtilDNS {
26062606
}
26072607
Else{
26082608
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
2609+
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
26092610
}
26102611
}
26112612
}
@@ -8436,31 +8437,51 @@ $sync.configs.applications = '{
84368437
$sync.configs.dns = '{
84378438
"Google": {
84388439
"Primary": "8.8.8.8",
8439-
"Secondary": "8.8.4.4"
8440+
"Secondary": "8.8.4.4",
8441+
"Primary6": "2001:4860:4860::8888",
8442+
"Secondary6": "2001:4860:4860::8844"
84408443
},
84418444
"Cloudflare": {
84428445
"Primary": "1.1.1.1",
8443-
"Secondary": "1.0.0.1"
8446+
"Secondary": "1.0.0.1",
8447+
"Primary6": "2606:4700:4700::1111",
8448+
"Secondary6": "2606:4700:4700::1001"
84448449
},
84458450
"Cloudflare_Malware": {
84468451
"Primary": "1.1.1.2",
8447-
"Secondary": "1.0.0.2"
8452+
"Secondary": "1.0.0.2",
8453+
"Primary6": "2606:4700:4700::1112",
8454+
"Secondary6": "2606:4700:4700::1002"
84488455
},
84498456
"Cloudflare_Malware_Adult": {
84508457
"Primary": "1.1.1.3",
8451-
"Secondary": "1.0.0.3"
8452-
},
8453-
"Level3": {
8454-
"Primary": "4.2.2.2",
8455-
"Secondary": "4.2.2.1"
8458+
"Secondary": "1.0.0.3",
8459+
"Primary6": "2606:4700:4700::1113",
8460+
"Secondary6": "2606:4700:4700::1003"
84568461
},
84578462
"Open_DNS": {
84588463
"Primary": "208.67.222.222",
8459-
"Secondary": "208.67.220.220"
8464+
"Secondary": "208.67.220.220",
8465+
"Primary6": "2620:119:35::35",
8466+
"Secondary6": "2620:119:53::53"
84608467
},
84618468
"Quad9": {
84628469
"Primary": "9.9.9.9",
8463-
"Secondary": "149.112.112.112"
8470+
"Secondary": "149.112.112.112",
8471+
"Primary6": "2620:fe::fe",
8472+
"Secondary6": "2620:fe::9"
8473+
},
8474+
"AdGuard_Ads_Trackers": {
8475+
"Primary": "94.140.14.14",
8476+
"Secondary": "94.140.15.15",
8477+
"Primary6": "2a10:50c0::ad1:ff",
8478+
"Secondary6": "2a10:50c0::ad2:ff"
8479+
},
8480+
"AdGuard_Ads_Trackers_Malware_Adult": {
8481+
"Primary": "94.140.14.15",
8482+
"Secondary": "94.140.15.16",
8483+
"Primary6": "2a10:50c0::bad1:ff",
8484+
"Secondary6": "2a10:50c0::bad2:ff"
84648485
}
84658486
}' | convertfrom-json
84668487
$sync.configs.feature = '{

0 commit comments

Comments
 (0)