SCCM query for cluster (virtual) name

querysccm

I'm trying to determine if the cluster name is stored in SCCM audit data. I see the host name in [v_R_System], and I'm able to identify cluster nodes here. What I need is the virtual name for the cluster nodes.

Best Answer

If we are talking about windows clustering and not something else then you can create a MOF file to extend hardware inventory to query the cluster name.

You can use powershell to check the cluster name:

get-wmiobject -class "MSCluster_Cluster" -namespace "root\mscluster" -computername "virtualName" | select -ExpandProperty name

If you have SCCM 2012, an alternative to creating the MOF file is using the "set classes" in the SCCM console.

Related Topic