Everyone loves quick wins,
The script below will tell you if a machine or more than one is being installed with a specific update.
Get-Hotfix -computername 'Machine name'| where {$_.HotfixID -eq "KB######"} | Select-Object HotfixID
It's all about learning!
Everyone loves quick wins,
The script below will tell you if a machine or more than one is being installed with a specific update.
Get-Hotfix -computername 'Machine name'| where {$_.HotfixID -eq "KB######"} | Select-Object HotfixID
Author of the site View more posts