How to determine which Exhange server names have identifiers <identifier>@<domain>.

Pavel 206 Reputation points
2022-03-31T15:17:58.817+00:00

If you open the Outlook connection status in the system tray, you can see that the servers to which Outlook is connected are displayed as
<identifier>@<domain>.
Exapmle:
e8cc95......@<domain>.com

188855-outlook-connection.jpg

How to determine which Exhange server names these identifiers correspond to?

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,698 questions
0 comments No comments
{count} votes

Accepted answer
  1. Andy David - MVP 150.2K Reputation points MVP
    2022-03-31T15:55:53.98+00:00

    See my answer here:
    https://social.technet.microsoft.com/Forums/en-US/14830b3a-32d2-4d69-af14-29a85f2d4629/where-to-find-exchange-server-name-when-it-looks-like-a-guid?forum=Exch2019

    Thats the mailbox guid:

    get-mailbox f942fd61-4ff3-bfe0-381acbde569b
    

    So from there, you can see which database is hosting that malbox:

    get-mailbox f942fd61-4ff3-bfe0-381acbde569b |FL database
    

    If this a database avail group, use this to determine which server that database is mount on

    Get-MailboxDatabaseCopyStatus -Identity DB1 
    

    If not, then:

    get-mailboxdatabase DB1 |FL server
    
    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Pavel 206 Reputation points
    2022-04-01T12:11:34.35+00:00

    Hello!

    Thanks for the help!

    I successfully determined the server and mailbox name.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.