Updates not been run for months

First, I'd say make sure WSUS is still syncing with MS, and then download and enable my script.http://community.spiceworks.com/scripts/show/2998-adamj-wsus-cleanupAdjust this variable to today's date (21)
[int]$AdamjDeclineSuperseededUpdatesWhatDayToRun = '1'Run the script and change it back to 1.This will start you off with the best possible (and least number) of updates you need to approve. Then do them 10 a day (after reading what they do).
Inside of Options, go to Automatic Approvalssee what's in there. you can set it up to "When an update is in critical updates, security updates""approve the update for all computers"enable that, and modify it how you want.

Ok,I started this job about a month ago, I discovered a WSUS server a little while ago and have just managed to get some time to have a bit of a closer look at it- I can't say I'm overly chuffed with what I've discovered - no updates have been approved since the end of Feb, some of the machines are in need of hundreds of updates. I've confirmed this by looking on a couple of client machines which haven't been updated since end of Feb. I've also got some updates from Mid 2014 that haven't been approved - no idea if these weren't approved for a reason by the last guy.I don't really want to approve them all now - don't think I'm going to be too popular when people close down their computers at the end of the day and they have to wait for a couple hundred updates to install.Any advice as to how best approach this and get these machines up...
This topic first appeared in the Spiceworks Community

Similar Messages

  • List AD accounts that have not been used for months?

    Hello,
    I use oldcmp.exe to show me what computers have not been used for months and I can disable them, but I wish to do the same for users Active Directory accounts, is this possible?
    We use AD 2003
    Thanks

    sorry for slightly belated reply. I've used another version of this script that doesn't have the GUI interface on it, this will make it easier for you to run from a scheduled task.
    copy the code and make the relevant changes to the top section of the script as the comments explain. This will send and email with a link to the report generated.
    #Script designed to search AD for inactive user accounts, mark them as inactive and move them to a specific OU then disable them
    #Script can be run in the following formats
    # 1. Report only
    # 2. Report and move account
    # 3. Report, move and disable
    #Uses quest powershell tools which can be downloaded from http://www.quest.com/powershell/activeroles-server.aspx
    #Version 2.0
    #Added email functionality
    #Denis Cooper
    #Setup script Variables
    #Change the setting from True to false to alter the way the script runs (only one option can be true)
    $ReportOnly = "True" #Generates a CSV file showing all inactive user accounts
    $ReportandMove = "False" #Generates a CSV report, moves the users to a specific OU
    $ReportMoveDisable = "False" #Generates a CSV report, moves the users to specific OU, and sets the description
    #Set the period of inactivity in days
    $InactiveFor = "90"
    #Specify the OU to search for inactive users - us AD CN if searching enire AD
    $SourceOU = "OU=Users,DC=MyDomain,DC=Int"
    #Specify the destination OU to move inactive users to is using report and move or report move disable script options
    $DestinationOU = "OU=Inactive Users,DC=MyDomain,DC=Int"
    #Don't mark anyone with the the specified prefix in the description field to inactive - DND stands for Do Not Disable and is specified
    #in the users account description field for accounts which may not be used to login so will show as inactive but that you don't want to disable
    #must leave the * after the word for wildcard matching
    $DescriptionPrefix = "DND*"
    #Specify the description to set in the computer account on ReportMoveDisable option
    $Description = "Account disabled due to inactivity on $Today"
    #Specify the path to create the csv file (make sure the folder exists)
    $ReportFile = "\\server\share\InactiveUsersReport.csv"
    #Get todays date and store it in the $today variable
    $Today = Get-Date
    #Email Settings
    $SMTPServer = "smtp-server-name" #replace this with your internal smtp server
    $FromAddress = "[email protected]" #replace this with your from address
    $ToAddress = "[email protected]" #replace this with your TO address
    $CCAddress = "[email protected]" #replace this with your TO address
    $Subject = "This is your subject line" #replace this with the subject line for the email
    $MessageContent = "
    Hello,
    Please find a link to the latest report containing users that have been inactive for $inactivefor days
    $ReportFile
    Please take the appropriate action.
    Thanks you,
    IT
    #NO CHANGES BELOW THIS LINE
    Function SendEmail {
    $messageParameters = @{
    Subject = $subject
    Body = $messagecontent
    From = $fromaddress
    TO = $ToAddress
    CC = $CCAddress
    SmtpServer = $SMTPServer
    Send-MailMessage @messageParameters
    #Generates a report showing inactive users
    Function ReportOnly {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    SendEmail
    Invoke-Item $ReportFile
    #Generates report and moves accounts to desitnation OU
    Function ReportandMove {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Generates report, moves accounts to destination OU, disables the account and sets the description
    Function ReportMoveDisable {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Disable-QADUser $_
    Set-QADUser $_ -Description $Description
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Runs the script
    #Finds all inactive user accounts which are in an enabled state and store them in the variable $inactiveusers
    $inactiveUsers = Get-QADUser -SizeLimit 0 -SearchRoot $sourceOu -NotLoggedOnFor $InactiveFor -Enabled | Where-Object {$_.description -notlike $DescriptionPrefix}
    #Checks which script to run
    If (($ReportONly -eq "True") -and ($ReportandMove -eq "True" -or $ReportMoveDisable -eq "True")) {
    Write-Host -ForegroundColor RED "Only one run condition is allowed, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -ne "True" -and $ReportandMove -ne "True" -and $ReportMoveDisable -ne "True") {
    Write-Host -ForegroundColor RED "No valid run condition was specified, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report only mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    ReportOnly
    If ($ReportandMove -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report and move mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU"
    ReportAndMove
    If ($ReportMoveDisable -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report, move and disable mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU and disabled and their description updated"
    ReportMoveDisable
    This link should help you create a scheduled task to run the script
    http://dmitrysotnikov.wordpress.com/2011/02/03/how-to-schedule-a-powershell-script/
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • Installing Software Update has been running for over an hour now, anyone else having the same issue?

    Installing Software Update has been running for over an hour, anyone else have the same issue?

    Hopefully it's been resolved by now - I have no idea how large each one of those files are. The progress bar tells you; FWIW, I only download one at a time - makes it easier and faster and you can choose to do the next one when you have time.

  • The latest update has been running for 16 hours. Is that normal.

    The small window has been showing for 16 hours. It says downloading the update, and connecting to the server and it has the bar running across. How don I know when it is complete.

    Not normal. You probably got a bad connection, but the update is not what you want. You are so far behind at Firefox 3.6.10 that even if the update worked you would still probably have to do more updates. With Mac OS X 10.4 you cannot go to Firefox 4.0, but you will want to go to the latest 3.6 version which is 3.6.17
    Start at http://www.mozilla.com/firefox/all-older.html ''(those with current systems can upgrade to 4.0.1 at http://www.mozilla.com for 4.0.1)''. At the completion of the download don't let the setup start Firefox for you, when the setup ends, start Firefox in your normal manner this way you will be less likely to create a new profile.
    The extra startup pages are temporary -- read them. The next time Firefox comes up you should be back to starting with your normal home page.
    Note: Firefox must be down once the install starts.
    Close Firefox with File>Exit. Then make sure Firefox is not running --
    On Windows: check the "Processes" tab in the Windows Task Manager.
    On Mac: Firefox > Quit then Command+option+Esc, if Firefox running use Force quit
    Permission errors on Mac:
    If you were getting permission errors on a Mac, download the latest
    Firefox version (for your system), then uninstall and reinstall Firefox. Do not remove your profile directories and files as they contain your settings,
    bookmarks, history, extensions, passwords, and cookies.

  • I am running with Firefox version 3.5.7. I am trying to update to a more recent version. So far, the update has been running for 4 hours. For most of the time it has been downloading versoin 3.6.18. Why am I hanging trying toi update?

    I have an old version of Firefox - Version 3.5.7.
    I am trying to update to the current version. As part of the update, the system is first loading all of the intermediate versions.
    I started the update 4 hours ago. It is still running. Most of the time, it has been downloading version 3.6.18. I am letting it run.
    Is there any other way to get the most recent version?

    Thank you. That is basically what I did. I gave up on the update and downloaded a fresh version of Firefox.

  • Can I interrupt an automatic update to iPhoto? If so, how? And how can I stop automatic updates? This current update has been running for over 4 hours now. I have a MacBook Pro w/OSX 10.9.1

    Can I interrupt an automatic update to iPhoto? Also, how can I turn OFF  automatic updates?

    as Larry said, just a caution about the App Store Preferences:
    If you do not want your software to update automatically, disable "Install app updates".  But better not disable the option "Install system data files and security updates".  If there are security updates available, it is important to get them installed asap.

  • I have updated to iOS8. Now cannot connect to BT speaker I have been using for months. BT discovers it but will not pair. Help please

    I have updated to iOS8. Now cannot connect to BT speaker that I have been using for months. BT discovers it but will not pair. I have tried switching both off & on but nothing helps.

    I am sure the BT speaker not the problem because it works fine with iOS8 on my iPad!
    ... And no I am not trying to connect both at once.  To be sure I have switched the iPad off completely and switched the speaker off & on but still with the same failure to pair.  The iPhone sees the speaker but then gives me the pairing unsuccessful message when asked to connect.

  • After rebooting my Windows Vista 64 bit system, could not access iTunes; after uninstalling I tried reinstalling, but it has been running for more than 24 hrs. Should I cancel installation?

    I had been updating my Windows Vista 64 bit system and as a result of a problem, had to reboot my system. Afterwards, I was no longer able to access iTunes.  I got a message stating that there was a problem with some of the files associated with the application.  A phone rep at Apple's Customer Service provided me with emails linking instructions on completely uninstalling and reinstalling iTunes. I did the uninstall, then checked for lingering iTunes files and couldn't completely remove some, but tried intalling the latest version of iTunes. It has been running for roughly 24 hours.  The status bar is green all the way across, and when I try to cancel, I get the following message: "Are you sure you want to cancel iTunes installation?"  I keep hitting "no," but am staring to wonder if there is a problem with the install.  Should it take this long if I have roughly 134 gigs of music?  I can still see the music in my computer's C drive, so I am worried that there is an error, perhpas because I didn't clear out all the lingering C:\Program Files\Common Files\Apple\ and all the lingering C:\Program Files\iTunes\.  Any thoughts?

    It is not just the HP. I have 3 HP computes and 2 Dell computers. 2 of the HP and 1 Dell suffer the iTunes internet block. Took me a while to figure it out also. But, the one thing that is different on the Dell, is that I can leave iTunes installed and not open it and everything works. As soon as I open it, internet access goes down. BUT secure sites (https:) works fine.

  • I performed a software update and the system is installing an update but it has been running for over 24hrs and keeps saying "This may take a few minutes, don't shut down your computer" Can anyone help?

    I performed a software update and the system is installing an update but it has been running for over 24hrs and keeps saying "This may take a few minutes, don't shut down your computer" Can anyone help?

    Hello cor-el, thanks for your reply. I changed my settings for downloads to desktop and it has appeared on there. When I double click I am asked which program I want to open file. I click firefox and another box "opening install" says I have chosen to open the file which is an application and do I want to save it. This is the only real option so I press save file. I get a box saying this is an executable file which may contain viruses - do you want to run. I press ok and the final box showing C drive file name and desktop appears stating application not found.
    This happens the same whenever I try to install.
    To my untrained eye the application is not being recognised as an application and I cannot work out how to get it to do that.
    My plugin is still showing as out of date.
    Is there anything you could suggest. Thanks for your time.

  • I have Lookout 6.5 running with Windows 7, the process has been running for about 2 months with no problems, but today the Citadel stopped working! I am having a hard time getting it started again, need help!

    I have Lookout 6.5 running with Windows 7, the process has been running for about 2 months with no problems, but today the Citadel stopped working!
    How could this have happened and what can I do to get it running again? 

    Didnt realize there was a response, late getting back to you.
    Save your process files outside of the NI progam directory (you should have external backups already right ).  THey should not be deleted.
    Any customizations to the lookout.ini and lookout.sec file may be lost.  
    Mike
    Forshock - Consult.Develop.Solve.

  • AFS ARun: sales order not been selected for the allocation run.

    Hi,
    I am setting up the Purchase-to-Order (similar to Indiv PO item sales order) Process for SAP AFS.
    When doing the Allocation Run (trx J3AT) after Goods receipt of Sales order stock, I get an error that ARun terminated because no requirements were selected. The delivery check report (/AFS/LIEF_CHECK) indicates that the sales order has not been selected for the allocation run.
    For this process, I have set-up an Allocation type with
    1.     Requirement selection that does not exclude MTO/PTO orders
    2.     Set-up stock selection which includes physical stock type for MTO/PTO orders to the customer special stock MSKA with the segment KALAB.
    Can someone suggest what I may have missed?
    Regards,
    PD

    Hi Pankaj, I have same exact issue. How did you fix this ?
    Thanks,
    Mahesh

  • I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months a year.  So, if I have Icloud for my calendar, and turn on a computer that has not been used for 6 months, does all the old information on that computer to go Icloud?

    I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months each year.  When I turn on a computer that has not been used for 6 months, does all of the old information from that computer end up in Icloud?  Does Icloud push all the new calendar and contact items over the old items?

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • I am trying to set up iTunes match on my apple tv, but it just keeps showing that it is loading, it has been running for over an hour, what can be done here, it has gone with no problem on my iPhone, iPad but not the tv

    i am trying to set up iTunes match on my apple tv, but it just keeps showing that it is loading, it has been running for over an hour, what can be done here, it has gone with no problem on my iPhone, iPad but not the tv

    Same here and this is driving me crazy. I can buy, but can't upgrade. Grrr.

  • HT1379 The USB ports on my 30" Cinema are not working.  The monitor has not been used for a year or so, and the computer is a Mac Book Pro, 1012 model running OS Mavericks.  I need to move the computer between two locations, and the other monitor is a 27"

    The USB ports on my 30" Cinema HD display appear to not work.  The monitor has not been used for almost a year, when I upgraded to a new Mac Book Pro and the 27" retina display.  Now I need to move the computer back and forth between two locations using the two displays.  The need for operating USB ports is essential.  Any ideas.  The display appears entirely normal.  Am running OS X 10.9.

    Disregard, problem solved.

  • How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain

    How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

Maybe you are looking for

  • ITunes crashes every time I hit "TV Shows"

    My iTunes crashes everytime I hit "TV Shows". I can select everything else in iTunes and it works fine until I hit "TV Shows". I even opened iTunes with a new iTunes library and it crashes. I don't have any purchased movies but I do have purchased sh

  • Premature end of file Error in the File conversion

    Hi Experts Working on File to Proxy scenario and file is picking up by the XI server and in the message mapping I am receiving the following error Can anyone let me know what is Premature end of file, Do I need to specify any parameter in the Content

  • Year Over Year Comparison for Multiple Years

    I have a business request where the client is asking for a year over year percentage comparison for multiple years So for example           Applications 2015     5 2014     10 2013     22 So in year 2015 we can see that applications is currently down

  • A Moderator Needs To Update the FAQ

    http://forums.adobe.com/thread/311515?tstart=0 Note that Photoshop CS6 and Elements 10 are the latest listed there.  Newer major releases of each have occurred. This is a HIGHLY valuable resource that I have many times linked others to, and really sh

  • Trigger creation - Help Required

    Hi, New to pl/sql and would like some help in trying to achieve the following. I have 2 tables with one being a history table. When someone insert into the first table not the history table. I'd like to create a trigger that will retrieve the last en