Skip to content

Instantly share code, notes, and snippets.

@evilz
Created August 5, 2019 13:30
Show Gist options
  • Select an option

  • Save evilz/266081c96e3c7c5f70686070b4618d2c to your computer and use it in GitHub Desktop.

Select an option

Save evilz/266081c96e3c7c5f70686070b4618d2c to your computer and use it in GitHub Desktop.
Force install all windows update
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