Skip to content

Adobe Network Block

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