The Computer Oracle

How do I tell Windows to shut up about Silverlight?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Quirky Dreamscape Looping

--

Chapters
00:00 How Do I Tell Windows To Shut Up About Silverlight?
00:17 Accepted Answer Score 32
00:53 Answer 2 Score 10
01:34 Answer 3 Score 8
02:50 Answer 4 Score 2
03:15 Answer 5 Score 0
03:38 Thank you

--

Full question
https://superuser.com/questions/435124/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows7 #windowsupdate #silverlight

#avk47



ACCEPTED ANSWER

Score 32


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.




ANSWER 2

Score 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).




ANSWER 3

Score 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.




ANSWER 4

Score 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.



ANSWER 5

Score 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.