Windows 7 Forums Search
Welcome to Windows 7 Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows 7. The Windows 7 forum also covers news and updates and has an extensive Windows 7 tutorial section that covers a wide range of tips and tricks.


Windows 7 - Restore Hidden Updates on Remote Computers?

 
09-15-2011   #1
POE


Windows 7
 
 

Restore Hidden Updates on Remote Computers?

In my environment we have about 100 computers that have the IE 9 windows update hidden (along with a few other updates). We do not have a SUS server to manage the updates on all of our remote computers. What would be the easiest way to restore these hidden updates on our employees' computers?

Is there a registry entry for all the updates? Could I just create a reg file that delete's or modifies the 'hidden' attribute and have users apply the reg file to their computer? That way automatic updates would do my job for me.

Any ideas or tips would be appreciated.

I'll continue googling for a solution in the mean time.

My System SpecsSystem Spec
09-15-2011   #2


Windows 7 Ultimate x64
 
 


Hi POE, I would think the easiest way is to have the user's of each computer open windows update and click on the hidden updates link and just restore it. It would be that simple.
My System SpecsSystem Spec
09-15-2011   #3


Vista Home Premium x86 SP2
 
 


Hello!

Scraping very badly off here: Mark A. Ziesemer: Scripted hiding of Windows Updates under Vista

I would guess at:

Code:
var updateSession = WScript.CreateObject("Microsoft.Update.Session"); 
var updateSearcher = updateSession.CreateUpdateSearcher(); 
updateSearcher.Online = false;  
 
var searchResult = updateSearcher.Search("IsHidden!=0");
for(var i=0; i<searchResult.Updates.Count; i++)
{   
    var update = searchResult.Updates.Item(i);   
    WScript.echo("Unhiding update: " + update.Title);  
    update.IsHidden = false;
}
Richard

Last edited by niemiro; 09-16-2011 at 02:07 AM.. Reason: Corrected slight slip-up in script...
My System SpecsSystem Spec
.


09-15-2011   #4
POE


Windows 7
 
 


Seth, as far as my boss is concerned, that is too much for our users to do. I told him I'd be willing to write up and send out the email myself. It would take all of 5 minutes! But our users are a bunch of Pharmacy Technicians and old corporate nuts. I've had to help these people with simple password changes more than you could imagine. Every week I get a call from these people that makes me second guess how stupid people with degrees can actually be.

Richard, thanks for digging that up. But I'm not much of a programmer at all. If it's not something that can be attached to an email and double clicked or rolled out automatically through our Active Directory environment, it won't be acceptable to Mr. Boss Man.

We do have a centralized Anti-Virus server that has application control. I was considering blocking all IE versions except for 9 and waiting for everyone to call me when they can't get to facebook.
My System SpecsSystem Spec
09-16-2011   #5


Vista Home Premium x86 SP2
 
 


Quote   Quote: Originally Posted by POE View Post
Seth, as far as my boss is concerned, that is too much for our users to do. I told him I'd be willing to write up and send out the email myself. It would take all of 5 minutes! But our users are a bunch of Pharmacy Technicians and old corporate nuts. I've had to help these people with simple password changes more than you could imagine. Every week I get a call from these people that makes me second guess how stupid people with degrees can actually be.

Richard, thanks for digging that up. But I'm not much of a programmer at all. If it's not something that can be attached to an email and double clicked or rolled out automatically through our Active Directory environment, it won't be acceptable to Mr. Boss Man.

We do have a centralized Anti-Virus server that has application control. I was considering blocking all IE versions except for 9 and waiting for everyone to call me when they can't get to facebook.
Hello!

You should be able to push the above script out via Active Directory.

Use this as your .vbs script:

Code:
var updateSession = WScript.CreateObject("Microsoft.Update.Session"); 
var updateSearcher = updateSession.CreateUpdateSearcher(); 
updateSearcher.Online = false;  
 
var searchResult = updateSearcher.Search("IsHidden!=0");
for(var i=0; i<searchResult.Updates.Count; i++)
{   
    var update = searchResult.Updates.Item(i);    
    update.IsHidden = false;
}
and use Active Directory to push it out to users. Please note that this will un-hide all updates. Is this OK? Otherwise please get me the KB's of the updates you wish to unhide, and I shall see what I can do.

Richard
My System SpecsSystem Spec
09-16-2011   #6
POE


Windows 7
 
 


Thanks Richard. I'll run this by my developers.
My System SpecsSystem Spec
Reply

 Restore Hidden Updates on Remote Computers? problems?



Thread Tools



Similar Threads for: Restore Hidden Updates on Remote Computers?
Thread Forum
Hidden Win Updates are restoring on their own Windows Updates & Activation
Windows Update - Hide or Restore Hidden Updates Tutorials
Remove hidden updates permanently Windows Updates & Activation
Need To View Memory On Remote Computers General Discussion
Detecting Users from remote Computers/Machines Network & Sharing


All times are GMT -5. The time now is 03:22 AM.



Windows 7 Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows 7" and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd
  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30