Exchange 2020 get mailbox identity

To retrieve the mailbox identity in Exchange 2010, you can use the following methods:

Method 1: Using the Exchange Management Shell

  1. Open the Exchange Management Shell.
  2. Run the following command: Get-Mailbox -Identity <MailboxName> | fl

Replace <MailboxName> with the actual name of the mailbox you want to retrieve the identity for.

This command will display the mailbox identity, which includes the following properties:

Method 2: Using the Exchange Management Console

  1. Open the Exchange Management Console.
  2. Navigate to the "Recipient Configuration" node.
  3. Right-click on the "Mailbox" node and select "Find".
  4. Enter the name of the mailbox you want to retrieve the identity for in the "Find" dialog box.
  5. Click "Find" to search for the mailbox.
  6. Right-click on the mailbox and select "Properties".
  7. In the "Mailbox Properties" dialog box, click on the "General" tab.
  8. The mailbox identity is displayed in the "Email address" field.

Method 3: Using PowerShell Remoting

  1. Open PowerShell.
  2. Run the following command: Invoke-Command -ComputerName <ExchangeServer> -ScriptBlock {Get-Mailbox -Identity <MailboxName> | fl}

Replace <ExchangeServer> with the name of the Exchange server you want to connect to, and <MailboxName> with the actual name of the mailbox you want to retrieve the identity for.

This command will retrieve the mailbox identity from the Exchange server and display it in the PowerShell console.

Note: Make sure you have the necessary permissions and credentials to access the Exchange server and retrieve the mailbox identity.