Excel Functoin getting Cluster status

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I try to implement a Excel Function for getting the status of the groups
and so on. Here is my initial script. It doesn't work, when I try to try
to enter the formula "=Querycluster(nodename,"groups")". Any ideas
what's wrong.

+++

Public Function Querycluster(Node As String, Resource As String) As Variant

Dim objCluster As Object

Set objCluster = CreateObject("MSCluster.Cluster")

objCluster.
If objCluster Is Nothing Then
Querycluster = CVErr(2001)
Exit Function

End If
Select Case LCase(Resource)

Case "groups"
Querycluster = objCluster.ResourceGroups
Case Else
Querycluster = CVErr(2001)
End Select


End Function
 
Even though you don't appear to use nodename, you would need to supply a
string in that position

=Querycluster("nodename","groups")
 
Tom said:
Even though you don't appear to use nodename, you would need to supply a
string in that position

=Querycluster("nodename","groups")
You mean

Putting in Cell =Querycluster("<nodename">,"groups")

Script looks this (changes here >>)

Public Function Querycluster(Nodename As String, Resource As String) As
Variant

Dim objCluster As Object

Set objCluster = CreateObject("MSCluster.Cluster")If objCluster Is Nothing Then
Querycluster = CVErr(2001)
Exit Function

End If
Select Case LCase(Resource)

Case "groups"
Querycluster = objCluster.ResourceGroups
Case Else
Querycluster = CVErr(2001)
End Select


End Function
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top