windows-nt/Source/XPSP1/NT/base/cluster/admin/msclus/vbscript/nodeprops.vbs

17 lines
214 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
Option Explicit
Main
Sub Main
Dim oCluster
Dim sCluster
Set oCluster = CreateObject("MSCluster.Cluster")
sCluster = InputBox( "Cluster to open?" )
oCluster.Open( sCluster )
MsgBox oCluster.Name
End Sub