如何阻止Adobe Reader更新?


4

在Adobe Reader自动更新到版本15.023.20053后,我无法再打印PDF。

我恢复到以前安装的版本(15.020.20042)并且能够打印正常,但Adobe Reader一直在尝试更新。

如何阻止Adobe Reader更新(和破坏)自身?


如果我的回答对您有用,请告诉我。谢谢!
DeerSpotter

Answers:


2

您可以通过更改注册表中的密钥来完成此操作:

在此输入图像描述

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Adobe\Adobe ARM\Legacy\Reader\{Product Code}

您需要更改密钥Mode

0: Do not download or install updates automatically.
1: Do not download or install updates automatically.
2: Automatically download updates but let the user choose when to install them.
3: Automatically download and install updates.
4: Notify the user downloads are available but do not download them.

将其设置0为取消激活自动更新。


尽管我的解决方案是您的解决方案,但直接在regedit中工作永远不会建议那些可能不太舒服的用户。在意外选择的内容上偶然按下删除键可能会破坏整个系统。
DeerSpotter 2017年

-1

让我们创建一个阻止Adobe所有更新的脚本。(最后的具体解决方案)

1.打开Notepad.exe

2.将此代码粘贴到其中:

echo off
REM *** initial taskkill to avoid conflicts
taskkill /im AcroRd32.exe
taskkill /im AcroRd64.exe
taskkill /im Acrobat.exe
Print Stopping Adobe Reader Updates
reg add "HKLM\SOFTWARE\Adobe\Acrobat Reader\7.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\8.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\9.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\10.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\12.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\13.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\14.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\15.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\DC\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
Print Stopping Adobe Acrobat Updates
reg add "HKLM\SOFTWARE\Adobe\Adobe Acrobat\7.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\8.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\9.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\10.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\11.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\12.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\13.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\14.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\15.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
Print Stopping Adobe Air Updates
reg add "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /d 0x00000001 /t REG_DWORD /f
Print Stopping Adobe Flash Updates 32/64-bit
C:
cd\Windows\system32\Macromed\Flash
if exist mms.cfg goto :next
echo "SilentAutoUpdateEnable=0" > mms.cfg
echo "AutoUpdateDisable=1" >> mms.cfg
:DoneFlash32
cd\windows\SysWOW64\Macromed\flash\
if exist mms.cfg goto :next
echo "SilentAutoUpdateEnable=0" > mms.cfg
echo "AutoUpdateDisable=1" >> mms.cfg
:DoneFlash64
cls
pause

保存为 UpdateBlockeradobe.bat

4.右键单击保存的文件并以管理员身份运行。

那就是它:)没有更新!

如果您想要一个特定的解决方案来解决您的问题,那么请 保存此代码而不是上面的代码:

echo off
REM *** initial taskkill to avoid conflicts
taskkill /im AcroRd32.exe
taskkill /im AcroRd64.exe
taskkill /im Acrobat.exe
Print Stopping Adobe Reader Updates
reg add "HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\15.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
Print Stopping Adobe Acrobat Updates
reg add "HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\15.0\FeatureLockdown" /v "bUpdater" /t REG_DWORD /d 0x00000000 /f
cls
pause

编辑#1:对问题版本的更新响应。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.