Tuesday 22 September 2015

Install Adobe Flash PlayerActiveX and Plugin SCCM 2007

The following process has been tested and confirmed as working with Adobe Flash Player in SCCM R2:

It does the following tasks:
  • Installs Flash Player ActiveX (For Internet Explorer) silently
  • Installs Flash Player Plugin (For Firefox) silently
  • Disable Update Checking / Autoupdate
  1. Download the latest ActiveX from https://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_19_active_x.msi
  2. Download the latest Plugin from https://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_19_plugin.msi
  3. Create a text file called install.cmd and copy in the following information


REM Install Adobe Flash Player ActiveX
msiexec.exe /qb /norestart /i "%~dp0install_flash_player_18_active_x.msi"

REM Installing Adobe Flash Player Plugin
msiexec.exe /qb /norestart /i "%~dp0install_flash_player_18_plugin.msi"

REM Disable Auto Updates
if exist "C:\Windows\SysWOW64\MacromedFlash" xcopy "%~dp0mms.cfg" "C:\Windows\SysWOW64\MacromedFlash" /e /i /h /y
if exist "C:\Windows\System32\MacromedFlash" xcopy "%~dp0mms.cfg" "C:\Windows\System32\MacromedFlash" /e /i /h /y
 
 
  1. Create a text file called mms.cfg and copy in the following information
AutoUpdateInterval=0 AutoUpdateDisable=1
  1. Copy the two installer files, mms.cfg and install.cmd to your software package share
  2. You can now create your SCCM package or deploy the software by using install.cmd.
 

0 commenti:

Post a Comment

Give me you feedback!