CanEnumAll Property
Exchange Server 2003
The CanEnumAll property indicates whether the queue can enumerate all of the messages that it has waiting for transmission. The CanEnumAll property is read-only.
Applies To
The CanEnumAll property is a member of the Exchange_Queue Class.
Instance Path
The CanEnumAll property appears on instances of the \\COMPUTERNAME\ROOT\MicrosoftExchangeV2:Exchange_Queue class.
MOF Syntax
[read] Boolean CanEnumAll;
Qualifiers
This property has no qualifiers.
VBScript Example
The following example shows how to retrieve a list of Exchange_Queue instances, and how to retrieve the associated CanEnumAll properties.
'===============================================================
' Purpose: Display each Exchange_Queue found for Exchange server,
' and show the CanEnumAll property on the Exchange_Queue
' objects
' Change: cComputerName [string] the computer to access
' Output: Displays the name of each Exchange_Queue and CanEnumAll property
'===============================================================
On Error Resume Next
Dim cComputerName
Const cWMINameSpace = "root/MicrosoftExchangeV2"
Const cWMIInstance = "Exchange_Queue"
cComputerName = "MyComputerNETBIOSName"
Dim strWinMgmts ' Connection string for WMI
Dim objWMIExchange ' Exchange Namespace WMI object
Dim listExchange_Queues ' ExchangeLogons collection
Dim objExchange_Queue ' A single ExchangeLogon WMI object
' Create the object string, indicating WMI (winmgmts), using the
' current user credentials (impersonationLevel=impersonate),
' on the computer specified in the constant cComputerName, and
' using the CIM namespace for the Exchange provider.
strWinMgmts = "winmgmts:{impersonationLevel=impersonate}!//"& _
cComputerName&"/"&cWMINameSpace
Set objWMIExchange = GetObject(strWinMgmts)
' Verify we were able to correctly set the object.
If Err.Number <> 0 Then
WScript.Echo "ERROR: Unable to connect to the WMI namespace."
Else
'
' The Resources that currently exist appear as a list of
' Exchange_Queue instances in the Exchange namespace.
Set listExchange_Queues = objWMIExchange.InstancesOf(cWMIInstance)
'
' Were any Exchange_Queue Instances returned?
If (listExchange_Queues.count > 0) Then
' If yes, do the following:
' Iterate through the list of Exchange_Queue objects.
For Each objExchange_Queue in listExchange_Queues
Wscript.Echo""
Wscript.Echo""
'
' Display the value of the CanEnumAll property.
WScript.echo "CanEnumAll = "& _
" ["&TypeName(objExchange_Queue.CanEnumAll)&"] "& _
objExchange_Queue.CanEnumAll
'
Next
Else
' If no Exchange_Queue instances were returned,
' display that.
WScript.Echo "WARNING: No Exchange_Queue instances were returned."
End If
End If