Created
August 5, 2019 13:30
-
-
Save evilz/266081c96e3c7c5f70686070b4618d2c to your computer and use it in GitHub Desktop.
Force install all windows update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| net stop wuauserv | |
| reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v UseWUServer /t Reg_DWORD /d 0 /f | |
| net start wuauserv | |
| Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | |
| Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | |
| Install-Module PSWindowsUpdate -Repository PSGallery -Force | |
| Get-WindowsUpdate -AcceptAll -Install -MicrosoftUpdate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment