Browse Source

Extend telemetry IP blacklist

pull/289/merge
Alex Hirsch 3 years ago
parent
commit
650e3f5f1d
  1. 19
      scripts/block-telemetry.ps1

19
scripts/block-telemetry.ps1

@ -205,6 +205,7 @@ foreach ($domain in $domains) {
Write-Output "Adding telemetry ips to firewall"
$ips = @(
# Windows telemetry
"134.170.30.202"
"137.116.81.24"
"157.56.106.189"
@ -217,6 +218,24 @@ $ips = @(
"65.52.108.33" # Causes problems with Microsoft Store
"65.55.108.23"
"64.4.54.254"
# NVIDIA telemetry
"8.36.80.197"
"8.36.80.224"
"8.36.80.252"
"8.36.113.118"
"8.36.113.141"
"8.36.80.230"
"8.36.80.231"
"8.36.113.126"
"8.36.80.195"
"8.36.80.217"
"8.36.80.237"
"8.36.80.246"
"8.36.113.116"
"8.36.113.139"
"8.36.80.244"
"216.228.121.209"
)
Remove-NetFirewallRule -DisplayName "Block Telemetry IPs" -ErrorAction SilentlyContinue
New-NetFirewallRule -DisplayName "Block Telemetry IPs" -Direction Outbound `

Loading…
Cancel
Save