Hi @shankar431 ,
to Question 2: "If this is not possible to identify from the SCOM console Alert properties, is it possinle to get the details of Alert ID/ Unique Identifier through Poershell command."
Yes, each Alert has iits nique Id and you can easily get it like that:
get-scomalert | where {$_.ResolutionState -eq 0} | select Name,Id
Thisd will get you alll New (ResolutionState = 0) Alerts and present you the output in the form Name, Id
Of course you can get all the properties you need if you just go with:
get-scomalert | where {$_.ResolutionState -eq 0}
----------
(If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)
Regards
Stoyan Chalakov