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

Script to Deploy Executables

set InstallRevision=1.0set TargetDir="%ProgramFiles%\Program Name"REM Check to see if the software has been installed. Check for…

Dump Folder Archival Script

Requirements:- Zip any .BAK files that are over 7 days- Delete any zip files that…

LAMP Stack using Docker

# Install docker and composeyum install docker docker-compose -y# Add user into docker groupusermod -aG…