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

<job id="Cluster Properties">
<reference guid="{f2e606e0-2631-11d1-89f1-00a0c90d061e}" version="1.0" />
<script language="VBScript">
Option Explicit
Dim oCluster
Dim oProps
Dim oProp
Set oCluster = CreateObject("MSCluster.Cluster")
oCluster.Open( "galenb-clus" )
Set oProps = oCluster.CommonProperties
for each oProp in oProps
if oProp.Format <> CLUSPROP_FORMAT_BINARY then
MsgBox oProp.Name & " = " & oProp.Value
end if
next
</script>
</job>