An easy one - Server OS Relevance

(imported topic written by rmnetops91)

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:

Windows 2000 server

Windows 2003 server (R1 & R2)

Windows 2008 server (R1 & R2)

(imported comment written by MattBoyd)

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

(imported comment written by rmnetops91)

Hmm… How would I convert this into a True/False value?

(imported comment written by Lee Wei)

Are you looking for those server operating systems specifically, or just the fact that the Windows OS type is server?

Give this one a try:

name of operating system as lowercase starts with “win” and (it = nt server product type) of product type of operating system

Lee Wei

(imported comment written by rmnetops91)

Hmmm… that seems to leave out domain controllers.

Would this work as well?

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

(imported comment written by Lee Wei)

Haha - it is your need so your call.

The statement looks perfect.