Get Last Patch Date Remotely Using PowerShell
Quick Code Summary 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 to know a […]
Read more