Posted On April 8, 2019

Applying Windows Patches

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Applying Windows Patches
#Example: Disabling Remote Code Execution

(new-object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x64.exe','C:\temp\vcredist_x64.exe')
c\:temp\vcredist_x64.exe /quiet /norestart
#Example: Download updates using BITS (cannot invoke remotely nor use ftp)

Import-Module BitsTransfer
$url = "http://download.windowsupdate.com/c/msdownload/update/software/updt/2019/01/windows10.0-kb4480977-x64_4630376d446938345665e2ce8379d96bb63a84c8.msu" #KB4480977
$output = "C:\temp\KB4480977.msu"
Start-BitsTransfer -Source $url -Destination $output
C:\temp\KB4480977.msu /quiet /norestart

Leave a Reply

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

Related Post

Create New Custom Attribute to User Class

Log onto Domain Controller Schema Master with an account belong to the group Schema Admin…

How to Implement Local Administrator Password Solution (LAPS) on Windows

Overview LAPS or Local Administrator Password Management is a good solution for local administrator account…

Quick PowerShell Cmdlet to Move Computer Object

$computername='SomeComputerName' $targetOU='OU=Computers,DC=kimconnect,DC=com' Move-ADObject -Identity (Get-ADComputer $computername).objectguid -TargetPath $targetOU