Disk RAID - Windows

(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)

(imported comment written by BenKus)

Try this:

exists (string values whose (it as lowercase contains “raid”) of properties “caption” of select objects “Caption from Win32_DiskDrive” of wmi )

Remember if you have multiple results, you can use the “whose” clause…

Ben

Hi Ben,

Could you please provide relevance statement for NON Windows.

Thanks A lot.

Naresh.J

Please create a new topic for this question instead, and provide a link to any related topics like this one, or any other related links from around the web.

1 Like