query installed hotfixe

User Rating: 5 / 5

Star ActiveStar ActiveStar ActiveStar ActiveStar Active
 

Query for installed hotfixe

 

Get-WmiObject -Query 'select * from Win32_QuickFixEngineering' | where {$_.HotFixID -eq 'KB2508062'}

 

Get-WmiObject -query 'select * from win32_quickfixengineering' | foreach {$_.hotfixid}

 

Get-WmiObject -query 'select * from win32_quickfixengineering' | where {$_.hotfixid -eq "KB2508062"} | foreach {$_.hotfixid}