Fast Windows Updates Install
Description:
When you install a fresh copy of Windows 7, it can take a really long time to get it fully patched. Follow this guide to speed things up.
To Resolve:
-
Download the appropriate (x64 or x86) versions of these three updates: KB3020369, KB3172605, and KB3125574. Follow link in references for download.
-
Open an elevated PowerShell prompt and run the following commands, which will allow the next updates to install quickly:
1 2 3 4 5
net stop wuauserv net stop bits rename c:\windows\SoftwareDistribution c:\windows\SoftwareDistribution.bak net start wuauserv net start bits
-
Double-click and run the KB3020369 update (previously downloaded). Should take less than 2 minutes to run, and will not require a reboot.
-
Now double-click the KB3172605 update you previously downloaded. Follow the prompts. Reboot when it says to. (This step should take about 1 minute).
-
Double-click and run the KB3125574 update (previously downloaded). Should take about 12 minutes to run. It will require a reboot that takes 5 minutes to complete.
-
Begin WU (Windows Update) after completing the above steps. A list of 60+ available updates should be returned within 5 minutes.
-
Finish updating normally rebooting when it says to. You will probably need to reboot and re-check for updates at least two more times.
-
Done. This usually only takes 2 hours instead of however long it usually takes.
-
A powershell way to update fresh copies of Windows: Download from here.
-
Create a folder called
PSWU
on your $PSModulePath -
Copy these three files to the directory you created:
- PSWU.psd1
- PSWU.psm1
- Install-AllUpdates.ps1
-
Unblock the files. In PS v3 and above, you can use the Unblock-File cmdlet.
-
If you haven’t already, run the command
Set-ExecutionPolicy Unrestricted
. -
Open Powershell as admin, Run the command:
Import-Module pswu
-
You can start using PSWU. Examples here.
Comments