How do I tell Windows to shut up about Silverlight?

40

10

The problem is described well here, so I won't repeat it; but basically, hiding the Silverlight update the naive way doesn't work.

So the question is -- how do I tell Windows to shut up about Silverlight and stop bringing it up on the list?

user541686

Posted 2012-06-11T04:43:45.867

Reputation: 21 330

1There are only about 10 Silverlight updates as of right now, so once you have no other updates you can just keep checking for new updates, hide the Silverlight one, then again and again until you hid them all. – None – 2015-05-10T20:06:32.040

2Just keeping the information updated: currently there are 10 Silverlights to hide. – Diego Queiroz – 2016-02-13T01:09:19.427

I have the same problem. There is an "optional" update for Windows. I look through the list and it's Silverlight, which I don't want. So I click hide and install the other ones. Then the next day there is another "optional" update. There's nothing optional about having something rammed down your throat every day. Malicious software removal tools are also pretty annoying. – Adamantus – 2016-08-10T18:51:42.967

explain "it's not installed". What's not installed? Microsoft Office? He was simply giving you an example of another Microsoft Product that you would ALSO not get update notifications about, if you follow that recommended solution. So, you disable the update notifications for Microsoft products (not Windows) and you don't get update notifications for Silverlight or any other Microsoft product. – Bon Gart – 2012-06-11T11:52:08.607

1You may think that the same "update" appears over and over again, but it's not. I just installed a new system. As I don't need Silverlight (or more precisely the Silverlight plugin for my webbrowsers) I chose to hide the "update" (which is actually not an update as Silverlight is not installed). When I click "Check for updates" again, the same Silverlight "update" seems to appear again, except it's not the same: it has a different ID. After hiding and checking for new updates several times, Silverlight doesn't appear anymore. The next time a new version will be out, it will reappear though. – user276648 – 2013-03-14T06:50:29.797

3its freaking annoying, I've repeatly for the last 3 days selected "hide this update" and it keeps popping up each day. – BerggreenDK – 2013-04-30T07:54:43.353

Answers

28

So, problem is there are 7 different versions of Silverlight. Some are older, some are newer.

You can manually Hide, "Check for Updates", Options, Hide them in a loop 7 or more times. I don't want to do that manually so I wrote a WSH js, save as WUA_xSilverlight.js:

var wu_Session = WScript.CreateObject("Microsoft.Update.Session");
var wu_Searcher = wu_Session.CreateUpdateSearcher();
wu_Searcher.Online = false;

do {
  WScript.echo("Searching...");
  var silverstreak = false;
  var searchResult = wu_Searcher.Search("IsHidden=0 And IsInstalled=0");

  for(var i=0; i<searchResult.Updates.Count; i++){
    var wupdate = searchResult.Updates.Item(i);
    if ( ! wupdate.Title.indexOf("Microsoft Silverlight") ) { // if -1
    wupdate.IsHidden=1;
    WScript.echo("   Hiding update: " + wupdate.Title);
    silverstreak = true;
    }
  }
} while ( silverstreak );  // repeat search

Execute the saved file: cscript.exe WUA_xSilverlight.js. I could have optimized the search and so the code, but it works so blah.

Tony Marques

Posted 2012-06-11T04:43:45.867

Reputation: 403

+1 Whoa, this is really cool! I didn't know such a thing was even possible, thanks for that! – user541686 – 2015-12-06T23:02:00.703

1After writing this, this has become one of my favorite scriptlets, forget about optimizing the search... to see everything it finds (really useful in windows 10 where you see less) -- you can make a small adjustment: after "silverstreak = true;" and before the "}\n}\n}", add: "} else { WScript.echo(".............. " + wupdate.Title);" ......... this displays all the available updates, so even in windows 7 on a domain computer it will show you that windows 10 is waiting and in windows 10 it displays optional updates like for drivers. – Tony Marques – 2016-01-09T14:28:46.297

2The most important information from your answer is that there are several updates called "Microsoft Silverlight" (with different KB number) and they get actually hidden but you need to repeat the process several times. – bpiec – 2016-02-28T15:28:46.057

3there's at least 16 ATOW – chiliNUT – 2017-08-04T17:18:39.797

3For the record, I have hidden 15 Silverlights now. They are KB2512827, KB2617986, KB2636927, KB2668562, KB2977218, KB3056819, KB3080333, KB3106614, KB3126036, KB3162593, KB3182373, KB3193713, KB4013867, KB4017094, KB4023307. – iBug – 2018-01-22T03:11:34.953

How could the script check admin permissions and ask for them if necessary? – cdlvcdlv – 2019-01-18T11:59:30.767

10

The issue became clear to me when I hid Bing Desktop v1.3 and Bing Desktop 1.2 showed up next. Upon careful inspection I had noticed that the Silverlight updates are each with a different date.

So lets say there are 10 Silverlight versions released. V10 will obsolete v1 through v9 and only v10 will show up. Choosing to hide v10 will cause v9 to show up, hiding v9 will show v8 the next time you check for updates, and so on and so forth.

If you are persistent about it you can hide every single version of Silverlight and it stops showing up (until the next version is released by MS).

taltamir

Posted 2012-06-11T04:43:45.867

Reputation: 420

8

I recently had this issue also, after installing a Windows 7 VM for work. Having not used Windows for quite some time this was very annoying to me as well.

I had a clean installation of Windows 7, upgraded to whatever the latest service pack is as of this writing and I'd refused to install Silverlight. However, it appears that Windows 7's service packs now "preload" portions of Silverlight, making it show up in Windows Update even when not technically fully installed. Highly irritating.

To fix this issue, I followed the removal directions in the following article from Microsoft's Support website: How to clean a corrupted Silverlight installation and then reinstall Silverlight.

After doing the complete removal from the "Let me fix it myself" section, Silverlight has not once showed up in my Windows Update.

Update (2015 09 17): If you have Microsoft Office installed, this won't work. It works on Windows 7 as described. Upon installing Office 2013, Silverlight gets installed and the updates in Microsoft Update persist. I haven't yet found a way to stop it with Office installed. Without Office, maybe only Office 2013, these instructions still work.

Bryson

Posted 2012-06-11T04:43:45.867

Reputation: 431

2so you installed the plugin after all? the idea here is to GET RIDE of the plugin and keep it from popping up in Windows update. – BerggreenDK – 2013-04-30T07:58:34.667

4No, I removed the plugin. As I said in my answer I only followed the removal instructions. The instructions just happened to be in a Microsoft article about reinstallation, the second half of which you can ignore. – Bryson – 2013-04-30T20:07:12.837

Like @Ohto below - I tried this (ran all the deletes in a batch file), but WU kept moaning until I hid every update as he suggested. Maybe I missed something? EDIT: I wonder if clearing the WU Download directory (%windir%\SoftwareDistribution\Download) would have negated the need for hiding? – Umber Ferrule – 2014-04-04T09:49:55.987

I had to attempt this like 4 or 5 times last time I reinstalled my Windows 7 VM in VMWare Fusion. It eventually worked, but they're changing things apparently. Not sure what or why. – Bryson – 2014-04-06T00:25:03.020

2

If the fixit solution doesn't work (like it did not for me), here is a bit more detailed solution.

  1. Click right mouse button on it, select Hide.
  2. Press ALT + Up or the up arrow next to the address bar
  3. If there is again a Silverlight update available, repeat steps 1. and 2.

Ohto Nordberg

Posted 2012-06-11T04:43:45.867

Reputation: 121

0

Enter Regedit and look for the following path:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight

In there, there will be a key named "UpdateConsentMode", whose value is set at 1 at installation. Changing it to 0 will disable the reminder.

jeff

Posted 2012-06-11T04:43:45.867

Reputation: 1

2That key doesn't exist on my system. I assume it's only created once you already installed Silverlight, but in this case we don't want to install it at all. – None – 2014-09-18T16:09:55.290

-8

Try disabling Microsoft Updates in settings.

But the side effect is you will not get important updates for other products like Office.

.

enter image description here

Moab

Posted 2012-06-11T04:43:45.867

Reputation: 54 203

1@Bryson: Moab did not recommend disabling Windows update, but unchecking the box marked "Microsoft Update - check for new optional Microsoft software when I update Windows" (unfortunately, it's the same checkbox that controls updates for non-OS Microsoft products you do have installed). Unchecking that won't stop OS updates the way that disabling Windows Update completely would. – Ben Voigt – 2015-09-26T21:35:38.263

16This is a terrible non-solution. The issue is not that he does not like Windows Update updates, it's that Windows Update continues showing him an "optional" update for Silverlight which he hasn't installed. Disabling Windows Update completely may be the worst security advice you can give any Windows user, for any reason. – Bryson – 2013-04-08T20:39:33.567

2Indeed terrible, you dont disable windows update, thats crazy - you only need to remove 1 single item you dont want installed on your computer. Its like, okay - I dont like the amount of gas my car uses, so remove the engine. – BerggreenDK – 2013-04-30T07:55:52.810