Create SCOM dynamic group with the list of servers that are non domain

Create SCOM dynamic group with the list of servers that are non domain .

we have set of non domain servers in our environment .Authentication for these servers is done through the certificates .

Instead of manually add the servers to the group I want to create a dynamic group .

Please suggest

Create a new group, use dynamic population, specify Windows Computer > NetBIOS Domain Name > Does not match Regular Expression. Then specify each domain as required.

Example regex:

(domain1.*|domain2.*|domain3.*)
Use a site like https://regexper.com/ to check your regex. Example:
https://regexper.com/#%28domain1.*%7Cdomain2.*%7Cdomain3.*%29
You may also need to add the case insensitive prefix:
(?i)(domain1.*|domain2.*|domain3.*)
I’ve used wildcards (.*), but you can specify them as full domain names, or use the wildcards differently to cover a broader naming convention. Regex is incredibly versatile, and there’s plenty of documentation online for it.
https://support.microsoft.com/en-gb/help/2702651/regular-expression-support-in-system-center-operations-manager
Depending on the purpose of the group, you may also want to add the same again, but for the health service watcher objects.
1 Like