(imported topic written by jeko1791)
All,
I’m trying to replicate for Windows the existing BES Inventory and License properties for AIX, Linux and UNIX that report if a system is using RAID. The only way I can think of finding this is if the WMI caption for W32_DiskDrive contains the word RAID. I’ve tried using the relevance below to detect this, but i’m running into a “non-unique” results issue.
Can anyone think of any better way to detect if a server is using RAID?
if (string value of property “caption” of select objects “Caption from Win32_DiskDrive” of wmi as lowercase contains “raid”) then (string value of property “caption” of select objects “Caption from Win32_DiskDrive” of wmi) else (nothing)