Delen via


Query's voor de ConfigurationData-tabel

Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.

Recente gestopte automatische services

Toont de meest recente services die zijn ingesteld op Automatisch, maar die zijn gerapporteerd als gestopt.

ConfigurationData
| where ConfigDataType == "WindowsServices" and SvcStartupType == "Auto"
| where SvcState == "Stopped"
| summarize arg_max(TimeGenerated, *) by SoftwareName, Computer