The following process to install Microsoft Silverlight silently has been tested and confirmed working with Silverlight 5.x and ConfigMgr / SCCM R2.
Having troubles with the instructions? Take a look at the example download. Full Download: SilverlightSilentInstall.zip |
- Download the 32-bit version of Silverlight from https://go.microsoft.com/fwlink/?LinkId=229320
- Download the 64-bit version of Silverlight from https://go.microsoft.com/fwlink/?LinkID=229321
- Create a text file called install.cmd and copy in the following information
@echo off cls echo -------------------------------------------------------- echo . echo . Installing Microsoft Silverlight - Please Wait. echo . (This window will close once installed) echo . REM Silent install Silverlight for 64-bit if defined ProgramFiles(x86) "%~dp0Silverlight_x64.exe" /q /doNotRequireDRMPrompt /noupdate if defined ProgramFiles(x86) exit REM Silent install Silverlight for 32-bit "%~dp0Silverlight.exe" /q /doNotRequireDRMPrompt /noupdate
- Copy the two exe install files and install.cmd to your software package share
- You can now create your SCCM package or deploy the software by using install.cmd
For more information on creating SCCM packages see distribute software using SCCM.