I was able to get this working after a bit of work. I'm on Windows 10 Pro and using acrobat 9 Pro. as stated above, you need to install each update in order. To go from 9.0 > 9.5 do: 9.1.0 > 9.1.2 > 9.2.0 > 9.3.0 > 9.3.2 > 9.3.3 > 9.4.0 > 9.4.2 > 9.4.5 > 9.4.6 > 9.5.0 > 9.5.1 > 9.5.2 > 9.5.3 > 9.5.5 Download each of the updates from ftp://ftp.adobe.com/pub/adobe/acrobat/win/9.x/ and save them in a central file location After installing manually from 9.0 > 9.2 the check for updates within the program started working but it took almost 2 days to complete. To streamline the process run this script at a .bat file: *NOTE* Make sure to comment (::) out the lines up to the version that you have installed *NOTE* the /qr in the last line will allow the prompt to restart to appear. If you just want to restart automaticaly use /passive *NOTE* you may need to install AcroProStdUpd910_T1_T2_incr.msp manually before the rest of the script works *NOTE* run this at night as it takes several hours to complete and requires a reboot at the end msiexec.exe /p "PATH_TO_FILE_LOCATION\AcroProStdUpd910_T1_T2_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd912_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd913_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd920_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd930_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd932_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd932_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd933_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd940_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd942_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd945_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd946_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd950_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd951_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd952_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd953_all_incr.msp" /passive /norestart msiexec.exe /p "PATH_TO_FILE_LOCATION\AcrobatUpd955_all_incr.msp" /qr
... View more