Hi,
I am using SCOM 2012 Powershell to close a lot of alerts, and my subscriptions are only allowed to send out NEW (0) alerts.
As soon as i run my powershell command, it starts sending out the alerts and states it's closed in e-mails and sending out SMS's which i make sure it doesn't send Closed (255) / Resolved (254) only NEW (0) state.
while its only happening while i close alerts with powershell, but when i normally close the alerts in the console it doesn't send out, So its more a on the Powershell level, also not getting any errors for it, this is also a Fresh installation of SCOM 2012 Sp1.
Why is it still sending out alerts.
Here is an example of the powershell command i am running to name 1.
get-SCOMAlert | where {$_.Name -like "Operations Manager failed to start a process"} | Resolve-SCOMAlert | out-null
Kind Regards