Posted On March 30, 2019

Window Update Via PowerShell

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Window Update Via PowerShell
  • Set Proxy

netsh winhttp set proxy proxy-server="hqproxy:80" bypass-list="*.kimconnect.com;192.168.*.*;"
[Microsoft.Win32.Registry]::SetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU","UseWUServer",0,[Microsoft.Win32.RegistryValueKind]::DWord)
restart-service wuauserv
  • Enable Windows Update Repository:

Set-ExecutionPolicy RemoteSigned -Force
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Install-Module PSWindowsUpdate -Force
Add-WUServiceManager -ServiceID 7971f918-a847-4430-9279-4a52d1efe18d -Confirm:$false
Restart-Computer
  • Run Windows Update from PowerShell (repeat this command multiple times until no more updates are available):

Get-WUInstall -MicrosoftUpdate -AcceptAll -AutoReboot -IgnoreUserInput -Install -Confirm:$false

# Manual Download of Updates and Execute of any Failed packages
Import-Module BitsTransfer
$url = "http://download.windowsupdate.com/c/msdownload/update/software/updt/2019/01/windows10.0-kb4480977-x64_4630376d446938345665e2ce8379d96bb63a84c8.msu"
$output = "C:\temp\KB4480977.msu"
Start-BitsTransfer -Source $url -Destination $output
C:\temp\KB4480977.msu /quiet

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Resolving URL to Public IP

# URL can be with http, https, full paths, or just domain $url='https://google.com/domains' # This…

PowerShell: Email Users with Expiring Passwords

# PasswordExpirationNotification.ps1 # Description: # This script performs the following tasks # a. Query Active…

Import A WMWare.PowerCLI from Behind the Proxy

VMWare PowerCLI is a must for Administrators. Here's a quick script to install it. If…