Unsticking Windows Updates That Are Stuck In Their Tracks

Server Man

Well-Known Member
May 17, 2015
OS X 10.7 Lion
Chrome 41.0.2272.118
Hello everyone, Matt Novitsch (SCCM Premier Field Engineer) with Craig McCarty (Platforms Premier Field Engineer) here to talk to you about a method of unsticking stuck Windows Updates. We have seen this several times with customers and on our own machines where Windows Updates are stuck downloading, installing, or failing to install for a variety of reasons. We found one way that fixes them all, without having too many steps, and can be done by any administrator…

So what do you need to do? Simple:

  1. Stop the BITS and the Windows Update Services
  2. Delete or rename the SoftwareDistribution folder
    1. NOTE: If deleting, it would be a good idea to copy or backup this folder first
  3. Start the BITS and Windows Update Services.
    1. NOTE: You should now see the SoftwareDistribution folder is recreated

This can be done via script if by running the following in an administrative PowerShell console.

<#

Script Disclaimer. The sample scripts provided here are not supported under any Microsoft standard support program or service. All scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose.

#>

#Stop BITS Server

Stop-Service BITS

#Stop Windows Update

Stop-Service wuauserv

#Rename the Software Distribution Folder to .old the folder will be recreated when the services are restarted

Rename-Item -Path “C:WindowsSoftwareDistribution” -NewName “C:WindowsSoftwareDistribution.old”

#Start BITS service

Start-Service BITS

#Start Windows Update

Start-Service wuauserv



Once this script is done, restart the endpoint and check for updates again.

If you are still experiencing problems with updates you could have a corrupt or missing system file. To resolve this, you will want to run the Deployment Imaging Servicing and Management (DISM) tool followed by SFC /SCANNOW. You can do this by using the steps below.

  1. Open an elevated command prompt
  2. Type ‘DISM.exe /Online /Cleanup-image /Restorehealth /Source:C:GoodSourceWindows /LimitAccess’ (C:GoodSource should be replaced with a path to a Windows DVD or mounted ISO).
    *This command can take several minutes to run.
    *In cases where Windows Updates are not broken, you would be able to just run ‘DISM.exe /Online /Cleanup-Image /RestoreHealth’.
    110618_1252_UnstickingW1.png
    In the screenshot above, I used a ISO mounted to D: as my source
  3. When command completes run ‘SFC /SCANNOW’ from the elevated command prompt.
    110618_1252_UnstickingW2.png
  4. Wait for the verification to show 100% complete. If no errors were detected, then you can close the window and try Windows Update again. If an error was detected and wasn’t automatically repaired, please refer to this article starting at Step 4 in the article.

If you haven’t discovered this method before, hopefully this helps you out of a jam Thanks for reading!

Continue reading...
 
Back
Top Bottom