PowerShell - Get patches installed win32_quickfixengineering
- Jon Boyette
- Apr 15, 2022
- 1 min read
Save as a named .ps1, edit the path of the text within it accordingly, this will get the Patches installed on a list of servers in text and export the results to csv
$Comp = GC C:\users\Wheretextfileresides\machines.txt
Get-WmiObject win32_quickfixengineering -computer $Comp | Export-Csv c:\temp\AllPatchesWithDates.csv -NoTypeInformation
Comments