Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Exchange Cluster Resource InformationContent of List Exchange Cluster Resource Information.vbsMD5 Hash: 22C6AF74596DAB2DA3B909EA9A18ED24 |
||
' Description: Lists cluster resource information for a computer running Microsoft Exchange Server 2003.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & _ strComputer & "\CIMV2\Applications\Exchange") Set colItems = objWMIService.ExecQuery _ ("Select * from ExchangeClusterResource") For Each objItem in colItems Wscript.Echo "Name: " & objItem.Name Wscript.Echo "Owner: " & objItem.Owner Wscript.Echo "State: " & objItem.State Wscript.Echo "Type: " & objItem.Type Wscript.Echo "Virtual machine: " & objItem.VirtualMachine Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |