Install Silverlight On Chrome

broken image


Another application that is common in almost all environments is Silverlight, so in this post I will show you how to install Silverlight silently in three ways.

The first thing we need is the exe for Silverlight that can be found here:
http://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx

In fact, the option to even enable Silverlight in Chrome was removed by Google in September of 2015. Yet some Silverlight content remains on the internet. Those who want to display it using the web's most popular web browser are at a loss. But not a complete loss. It is still possible to use Silverlight in Chrome on Windows 10 with a free. The version of Microsoft Silverlight you attempted to install is already Iinstalled. If you need to reinstall Silverlight, you should uninstall Silverlight before attempting to reinstall it. Close your browser. Uninstall Silverlight by following the Silverlight Uninstall Instructions. Download and install the latest version of Silverlight. Silverlight is a free plug-in, powered by.NET framework and works with most web browsers, devices and operating systems.It is a useful application which creates engaging, interactive user experiences for Web and mobile applications.

Note: If you are running a 64-bit OS, the file will be the one for 64-bit. If you need the 32-bit exe, you need to download it from a computer running a 32-bit OS.

The first way

Chrome

The most common way, and the easiest way is to use the *.exe file directly. I would recommend using this method when the application is installed with a TS through SCCM since applications has a tendency to fail for no apparent reason.

Microsoft Silverlight Download

In this case the complete install string would be:

Silverlight

The most common way, and the easiest way is to use the *.exe file directly. I would recommend using this method when the application is installed with a TS through SCCM since applications has a tendency to fail for no apparent reason.

Microsoft Silverlight Download

In this case the complete install string would be:

silverlight_x64.exe /q

The second way

Silverlight For Chrome Download

The second way is to use the *.msi file and the *.msp file that is included in the downloaded *.exe file.

The first thing is to extract the content of the *.exe file. To do this, run the following command in a elevated command prompt:

silverlight_x64.exe /extract

The following files will be extracted:

The *.msp file is located in the 'silverlight.7z' file, so go ahead and extract the file to same folder as the other files. When done, you can delete all files except the *.msi and *.msp file.

Before we can do a silent installation of Silverlight, we need to uninstall the old version that is installed on the client. The command that should be used is the following:

msiexec.exe /X{89F4137D-6C26-4A84-BDB8-2E5A4BB71E00} /qn

Then we can install the new version by running the following command:

msiexec /i silverlight.msi /update Silverlight.msp ALLUSERS=2 /qn /LiV %temp%Silverlight5.log

The third way

Well, to be honest, this isn't really a third way to install. But this paragraph will tell you something that you need to know if you don't want your users to manually update Silverlight. We need to add/update two registry values to disable this feature.

The two items are located in the following key:
[HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftSilverlight]

And are named:

Install Microsoft Silverlight On Google Chrome

  • UpdateConsentMode
  • UpdateMode

Silverlight Install

Give these a value of '0' to completely disable the automatic update of Silverlight.
If they are not present, you can just create them as a new 'DWORD'.

Happy deployment!





broken image