Get-Hotfix Powershell Command to find Patches installed on Specific Date.
There was a request to verify the list of servers if those were patched recently. I succeeded in verifying the servers using the below powershell command.
get-hotfix -CN “Server1″,”Server2″,”Server3” -CRED “Domain\username” | select csname,hotfixid,installedon,description,installedby | where {$_.installedon -gt “8/1/2017”} | Sort-Object csname | format-table
Thanks,
WintelAdmin
Facebook Comments