Skip to content

Rolling out Flash Player – Update

In a previous post entitled Keeping Adobe Flash Player up to date via Group Policy we detailed how to roll out Flash Player through Group Policy, well this needs a bit of tweaking post v11 being released. The new 32 bit version is available from http://download.macromedia.com/pub/flashplayer/current/install_flash_player_ax_32bit.exe and you can guess where the 64bit version is.

So the updated Download_Latest_Flash.bat

wget -N -P “\FITNTS01DriversAdobeFlash Player” http://download.macromedia.com/pub/flashplayer/current/install_flash_player_ax_32bit.exe -N
wget -N -P “\FITNTS01DriversAdobeFlash Player” http://download.macromedia.com/pub/flashplayer/current/install_flash_player_ax_64bit.exe -N

And the updated Install_Flash_IE.bat

IF NOT “%ProgramFiles(x86)%”==”” GOTO 64bit

“\FITNTS01DriversAdobeFlash Playerinstall_flash_player_ax_32bit.exe” -install
EXIT

:64bit
“\FITNTS01DriversAdobeFlash Playerinstall_flash_player_ax_64

Back To Top