UpdateSummary 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
컴퓨터에서 사용할 수 있는 업데이트 요약
각 컴퓨터에 대한 다양한 범주에서 사용할 수 있는 업데이트 수입니다.
// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| where TimeGenerated>ago(14h)
| summarize by Computer, CriticalUpdatesMissing, SecurityUpdatesMissing, OtherUpdatesMissing, TotalUpdatesMissing, ResourceId
특정 업데이트 제품 누락
WSUS 컴퓨터 멤버 자격입니다.
// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| summarize AggregatedValue = count() by WSUSServer, Computer, _ResourceId
자동 업데이트 구성
자동 업데이트 구성.
// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| summarize AggregatedValue = count() by WindowsUpdateSetting, Computer, _ResourceId
자동 업데이트 구성을 사용할 수 없음
자동 업데이트가 사용하지 않도록 설정된 컴퓨터
// To create an alert for this query, click '+ New alert rule'
UpdateSummary
| where WindowsUpdateSetting == "Manual"
| sort by TimeGenerated desc