Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING SQL Query to know list of installed patches

syed sameer

Well-Known Member
Messages
144
Reaction score
2
Points
18
Hi Prajwal

can u provide me SQL Query to know list of installed patches in particular client machine ?
 
SQL:
Get-WmiObject -Query "SELECT * FROM CCM_UpdateStatus" -Namespace "root\ccm\SoftwareUpdates\UpdatesStore" | where {$_.status -eq "Installed"} | Select-Object title
 
Back
Top