I’m sure this will be an easy one. Can someone give me a relevance example for an auto-group to identify all Microsoft Windows OS’s of type “Server”? It needs to be able to accurately group the following:
Will this work? I took it from the “Operating system Information (Windows)” analysis:
if (name of operating system as lowercase starts with "win") then (if (name of operating system = "Win95" OR name of operating system = "Win98" or name of operating system = "WinME") then "Workstation" else (if (value "ProductType" of key "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ProductOptions" of registry = "WinNT") then "Workstation" else "Server")) else "Unknown - " & name of operating system
name of operating system as lowercase starts with “win” and (it = nt server product type OR it = nt domain controller product type) of product type of operating system