Get Last Patch Date Remotely Using PowerShell
Quick Code Summary Get Last Patch Date Remotely Using PowerShell Get-WmiObject -ComputerName “localhost” Win32_Quickfixengineering | select ` @{Name=”InstalledOn”;Expression={$_.InstalledOn -as [datetime]}} | Sort-Object -Property ` Installedon | select-object -property installedon -last 1 Sometimes you may need […]
Read more