Skip to content

Adobe URL Block List - Enable

config/tweaks.json
1022  "WPFTweaksBlockAdobeNet": {
1023    "Content": "Adobe URL Block List - Enable",
1024    "Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
1025    "category": "z__Advanced Tweaks - CAUTION",
1026    "panel": "1",
1027    "InvokeScript": [
1028      "
1029      $hostsUrl = \"https://github.com/Ruddernation-Designs/Adobe-URL-Block-List/raw/refs/heads/master/hosts\"
1030      $hosts = \"$Env:SystemRoot\\System32\\drivers\\etc\\hosts\"
1031
1032      Move-Item $hosts \"$hosts.bak\"
1033      Invoke-WebRequest $hostsUrl -OutFile $hosts
1034      ipconfig /flushdns
1035
1036      Write-Host \"Added Adobe url block list from host file\"
1037      "
1038    ],
1039    "UndoScript": [
1040      "
1041      $hosts = \"$Env:SystemRoot\\System32\\drivers\\etc\\hosts\"
1042
1043      Remove-Item $hosts
1044      Move-Item \"$hosts.bak\" $hosts
1045      ipconfig /flushdns
1046
1047      Write-Host \"Removed Adobe url block list from host file\"
1048      "
1049    ],