Created
October 30, 2017 11:42
-
-
Save vlakoff/6edb0806701428b11507bf51836b6824 to your computer and use it in GitHub Desktop.
I got tired of "click click click" each and every time a new Adobe Flash version is released. Still UAC prompts, though. Includes a check of installed versions before and after the setups.
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
:: Installers download page: | |
:: https://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#main-pars_text_4 | |
@ECHO. | |
@ECHO == CURRENT VERSIONS == | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerActiveX /v Version | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerPlugin /v Version | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerPepper /v Version | |
@ECHO. | |
@ECHO Installing ActiveX... | |
@START "" /WAIT install_flash_player_ax.exe -install | |
@ECHO Installing NPAPI... | |
@START "" /WAIT install_flash_player.exe -install | |
@ECHO Installing PPAPI... | |
@START "" /WAIT install_flash_player_ppapi.exe -install | |
@ECHO. | |
@ECHO. | |
@ECHO == NEW VERSIONS == | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerActiveX /v Version | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerPlugin /v Version | |
@REG QUERY HKLM\SOFTWARE\Macromedia\FlashPlayerPepper /v Version | |
@PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment