I will create (with PowerShell script) a table and add the result(Positive/negative) to it. I have a text file computers.txt, in which all PCs are listed.
Like this
CSNAME Hotfixinfo PC1 is installed PC2 is not installed PC3 is installed etc.
With my actual script I can only see the positive result.
Get-Content .\computers.txt | Where {
$_ -and (Test-Connection $_ -Quiet)
} | foreach {
Get-Hotfix -Id KB4012212 -ComputerName $_ |
Select CSName,HotFixID |
ConvertTo-Csv |
Out-File "C:\$_.csv"
}