
Quote: Originally Posted by
POE
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