Count alerts that are not NEW or CLOSED
Open alert count (all resolution states, except new and closed)
$states = 2..254;get-alert | where {$states -contains $_.resolutionState} | measure-object
Dieser Browser wird nicht mehr unterstützt.
Führen Sie ein Upgrade auf Microsoft Edge durch, um die neuesten Features, Sicherheitsupdates und den technischen Support zu nutzen.
Open alert count (all resolution states, except new and closed)
$states = 2..254;get-alert | where {$states -contains $_.resolutionState} | measure-object