Skip to content

Instantly share code, notes, and snippets.

@supermarsx
Last active November 15, 2022 02:29
Show Gist options
  • Save supermarsx/52c572b54d1171ea0603dc73dc3c95cb to your computer and use it in GitHub Desktop.
Save supermarsx/52c572b54d1171ea0603dc73dc3c95cb to your computer and use it in GitHub Desktop.
Disable Adobe Acrobat/Reader updater (Services, Task Scheduler, Registry), adobe update patch
# Disable update service (Services)
Set-Service AdobeARMservice -StartupType Disabled
Stop-Service AdobeARMservice -Force -NoWait
# Disable Adobe Genuine Monitor Service
Set-Service AGMService -StartupType Disabled
Stop-Service AGMService -Force -NoWait
# Disable Adobe Genuine Software Integrity Service
Set-Service AGSService -StartupType Disabled
Stop-Service AGSService -Force -NoWait
# Disable update task (Task Scheduler)
schtasks /Change /TN "Adobe Acrobat Update Task" /Disable
# Disable updates key, mode 0, Adobe Reader (Registry)
REG ADD "HKLM\SOFTWARE\WOW6432Node\Adobe\Adobe ARM\Legacy\Reader\{AC76BA86-7AD7-1046-7B44-AC0F074E4100}" /v "Mode" /t REG_DWORD /d 0 /f
# Disable update button key, Adobe Reader (Registry)
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\DC\FeatureLockDown" /v "bUpdater" /t REG_DWORD /d 0 /f
# Disable updates key, mode 3, Adobe Acrobat (Registry)
REG ADD "HKLM\SOFTWARE\WOW6432Node\Adobe\Adobe ARM\Legacy\Acrobat\{AC76BA86-1033-FFFF-7760-0C0F074E4100}" /v "Mode" /t REG_DWORD /d 0 /f
# Disable update button key, Adobe Acrobat (Registry)
REG ADD "HKLM\SOFTWARE\Policies\Adobe\Acrobat Acrobat\DC\FeatureLockDown" /v "bUpdater" /t REG_DWORD /d 0 /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment