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.

25 lines
507 B

  1. <job id="Cluster Properties">
  2. <reference guid="{f2e606e0-2631-11d1-89f1-00a0c90d061e}" version="1.0" />
  3. <script language="VBScript">
  4. Option Explicit
  5. Dim oCluster
  6. Dim oProps
  7. Dim oProp
  8. Set oCluster = CreateObject("MSCluster.Cluster")
  9. oCluster.Open( "galenb-clus" )
  10. Set oProps = oCluster.CommonProperties
  11. for each oProp in oProps
  12. if oProp.Format <> CLUSPROP_FORMAT_BINARY then
  13. MsgBox oProp.Name & " = " & oProp.Value
  14. end if
  15. next
  16. </script>
  17. </job>