Last active
June 20, 2022 10:31
-
-
Save supermarsx/4fb76194180bc8e5e11eae313b936eb0 to your computer and use it in GitHub Desktop.
Enable Adobe Acrobat/Reader updates (Services, Task Scheduler, Registry), adobe update patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable update service (Services) | |
Set-Service AdobeARMservice -StartupType Automatic | |
Start-Service AdobeARMservice | |
# Enable Adobe Genuine Monitor Service | |
Set-Service AGMService -StartupType Automatic | |
Start-Service AGMService | |
# Enable Adobe Genuine Software Integrity Service | |
Set-Service AGSService -StartupType Automatic | |
Start-Service AGSService | |
# Enable update task (Task Scheduler) | |
schtasks /Change /TN "Adobe Acrobat Update Task" /Enable | |
# Enable updates key, mode 3, Adobe Reader (Registry) | |
REG ADD "HKLM\SOFTWARE\WOW6432Node\Adobe\Adobe ARM\Legacy\Reader\{AC76BA86-7AD7-1046-7B44-AC0F074E4100}" /v "Mode" /t REG_DWORD /d 3 /f | |
# Enable update button key, Adobe Reader (Registry) | |
REG DELETE "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\DC\FeatureLockDown" /v "bUpdater" | |
# Enable 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 3 /f | |
# Enable update button key, Adobe Acrobat (Registry) | |
REG DELETE "HKLM\SOFTWARE\Policies\Adobe\Acrobat Acrobat\DC\FeatureLockDown" /v bUpdater |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment