PowerShell Search Installed Windows Update on Remote Computers

preview_player
Показать описание
In This Video you will learn how to find any specific KB status on remote computers. You just have to provide KB number and Computer List and Script will do rest of your Job. This is very simple script. You can use it and let me know if you face any issue.

=====================| Script Start Here |=====================
$KB = read-host "Enter KB Number to Search"
Foreach($server in $computers) {
IF (Test-Connection -BufferSize 32 -Count 1 -ComputerName $server -Quiet) {

if ((Get-HotFix -Id $KB -ComputerName $server -ErrorAction SilentlyContinue))

{
Write-Host "$server - $KB is installed on Computer"

else {
Write-Host "$server - $KB is NOT installed on Computer"
}

} Else {
Write-Host "$server - The remote computer is Offline"
}}
pause
=====================| Script END Here |=====================

PowerShell Script to Connect Multiple Server's Remote Session

PowerCLI Script to power ON dedicated VMs listed in a text file

PowerCLI Script to power Off dedicated VMs listed in a text file

Delete Snapshot's from Multiple Virtual Machines

Create Snapshot on Multiple Virtual Machine

How can I check if a port is open remotely

Installing software remotely on Multiple "Workgroup" Computers

PowerShell Installing software remotely on Multiple Computers

Unable to move OU in Active Directory (Access is denied)

PowerShell Installing software remotely on Multiple Computers

Get Multiple Services Status Remotely | Remotely Start or Stop Services

Get Date and Time from Multiple Remote Computers

PowerCLI - How to get HA restarted VM's List

Get-Childitem - Search file on Local and Remote Computers

Remotely Create Update Delete Registry Key on Multiple Computers

Get service status from remote server's using PowerShell
Рекомендации по теме
Комментарии
Автор

Tha ks for sharing the knowledge.

Could you please provide how to install the patches for remote computers through the jump server.

Thanks in advance.

MohammedIrfan-bhdg
Автор

Hi, your videos are very helpful, just in case is there any way we can put multiple KB's as an input

rashuisthebest
Автор

Hi how can we update google chrome on multiple window severs using power shell script for automation

polusivanandini
Автор

hi any idea how can i install MS KB .msu files from remote computer to multiple server ?

jeolabu