Skip to content

Adobe Network Block

config/tweaks.json
2002  "WPFTweaksBlockAdobeNet": {
2003    "Content": "Adobe Network Block",
2004    "Description": "Reduces user interruptions by selectively blocking connections to Adobe's activation and telemetry servers. Credit: Ruddernation-Designs",
2005    "category": "z__Advanced Tweaks - CAUTION",
2006    "panel": "1",
2007    "InvokeScript": [
2008      "
2009      $hostsUrl = \"https://github.com/Ruddernation-Designs/Adobe-URL-Block-List/raw/refs/heads/master/hosts\"
2010      $hosts = \"$Env:SystemRoot\\System32\\drivers\\etc\\hosts\"
2011
2012      Move-Item $hosts \"$hosts.bak\"
2013      Invoke-WebRequest $hostsUrl -OutFile $hosts
2014      ipconfig /flushdns
2015
2016      Write-Host \"Added Adobe url block list from host file\"
2017      "
2018    ],
2019    "UndoScript": [
2020      "
2021      $hosts = \"$Env:SystemRoot\\System32\\drivers\\etc\\hosts\"
2022
2023      Remove-Item $hosts
2024      Move-Item \"$hosts.bak\" $hosts
2025      ipconfig /flushdns
2026
2027      Write-Host \"Removed Adobe url block list from host file\"
2028      "
2029    ],