Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
359 B

  1. Dim oCluster
  2. Dim devicePath
  3. Dim logSize
  4. Dim sCluster
  5. Main
  6. Sub Main
  7. Set oCluster = CreateObject("MSCluster.Cluster")
  8. sCluster = InputBox( "Cluster to open?" )
  9. oCluster.Open( sCluster )
  10. devicePath = oCluster.QuorumPath
  11. logSize = oCluster.QuorumLogSize
  12. MsgBox "Quorum path is " & devicePath
  13. MsgBox "Quorum log size is " & logSize
  14. End Sub