Hi, I have some issue creating a dashboard containing all instances of a class that have a specific pattern in name. I tried in powershell and this is working:
Get-SCOMClass -DisplayName “HPE OneView Proliant Server” | Get-SCOMClassInstance | Where-Object { $_.DisplayName -like “ILOCZ*” }
But, when it comes to a new tile, using this criteria:
displayname like “ILOCZ%”
results in error:
The property displayname is not valid for the given criteria.
How is this possible ? The property is existing in this class:
DisplayName : ILOCZJ6060C5Y.mydomain.net
Thanks for help