top of page

PowerShell - Get Last Updates applied on list of servers/computers

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 10, 2022
  • 1 min read

Save this as a .ps1, add servers to check to c:\temp\servers.txt, Outputs HotFixreport.txt to the desktop.


function Hotfixreport {

$computers = Get-Content C:\temp\servers.txt

$ErrorActionPreference = 'Stop'

ForEach ($computer in $computers) {

try

{

Get-HotFix -cn $computer | Select-Object PSComputerName,HotFixID,Description,InstalledBy,InstalledOn | FT -AutoSize

}

catch

{

Write-Warning "System Not reachable:$computer"

}

}

}

Hotfixreport > "$env:USERPROFILE\Desktop\Hotfixreport.txt"



 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page