Query's voor de tabel UpdateSummary

Overzicht van updates die beschikbaar zijn op alle computers

Het aantal updates dat beschikbaar is onder verschillende categorieën voor elke machine.

// To create an alert for this query, click '+ New alert rule'
UpdateSummary 
| where TimeGenerated>ago(14h) 
| summarize by Computer, CriticalUpdatesMissing, SecurityUpdatesMissing, OtherUpdatesMissing, TotalUpdatesMissing, ResourceId

Ontbrekend updatespecifiek product

WSUS-computerlidmaatschap.

// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| summarize AggregatedValue = count() by WSUSServer, Computer, _ResourceId

Configuratie automatische updates

Configuratie van automatische updates.

// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| summarize AggregatedValue = count() by WindowsUpdateSetting, Computer, _ResourceId

Configuratie van automatische updates is uitgeschakeld

Computers waarop automatische updates zijn uitgeschakeld.

// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| where WindowsUpdateSetting == "Manual" 
| sort by TimeGenerated desc