MailboxGUID Property
Exchange Server 2003
The MailboxGUID property indicates the globally unique identifier (GUID) that links the mailbox to a user in Microsoft Active Directory. The MailboxGUID property is read-only, and is a key property of this class.
Applies To
The MailboxGUID property is a member of the Exchange_Mailbox Class.
Instance Path
The MailboxGUID property appears on instances of the \\COMPUTERNAME\ROOT\MicrosoftExchangeV2:Exchange_Mailbox class.
MOF Syntax
[key, read] string MailboxGUID;
Qualifiers
key
VBScript Example
The following example shows how to retrieve a list of Exchange_Mailbox instances, and how to retrieve the associated MailboxGUID properties.
'===============================================================
' Purpose: Display each Exchange_Mailbox found for Exchange server,
' and show the MailboxGUID property on the Exchange_Mailbox
' objects
' Change: cComputerName [string] the computer to access
' Output: Displays the name of each Exchange_Mailbox's MailboxGUID property
'===============================================================
On Error Resume Next
Dim cComputerName
Const cWMINameSpace = "root/MicrosoftExchangeV2"
Const cWMIInstance = "Exchange_Mailbox"
cComputerName = "MyComputerNETBIOSName"
Dim strWinMgmts ' Connection string for WMI
Dim objWMIExchange ' Exchange Namespace WMI object
Dim listExchange_Mailboxs ' ExchangeLogons collection
Dim objExchange_Mailbox ' 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_Mailbox instances in the Exchange namespace.
Set listExchange_Mailboxs = objWMIExchange.InstancesOf(cWMIInstance)
'
' Were any Exchange_Mailbox Instances returned?
If (listExchange_Mailboxs.count > 0) Then
' If yes, do the following:
' Iterate through the list of Exchange_Mailbox objects.
For Each objExchange_Mailbox in listExchange_Mailboxs
Wscript.Echo""
'
' Display the value of the MailboxGUID property.
WScript.echo "MailboxGUID = "& _
" ["&TypeName(objExchange_Mailbox.MailboxGUID)&"] "& _
objExchange_Mailbox.MailboxGUID
'
Next
Else
' If no Exchange_Mailbox instances were returned,
' display that.
WScript.Echo "WARNING: No Exchange_Mailbox instances were returned."
End If
End If