
我的機構有多個網域,我知道多個電子郵件地址已配置為路由到我的一個 Exchange 帳戶。我知道我曾在 GUI 中見過此列表,我相信它是在 Outlook 或 Outlook Web Access 中。我似乎無法再找到該資訊 - 它在哪裡?
目前,我使用的是 Outlook 2016 和 OWA 2013。
答案1
在 Outlook 2016 中,選擇“首頁”選項卡,選擇“通訊簿”,搜尋任何用戶,雙擊該用戶,按一下“電子郵件地址”標籤。
答案2
以防萬一您想從 Powershell 中查看它。
Install-Module ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement
$credential = Get-Credential [email protected]
Connect-ExchangeOnline -Credential $credential
Get-Recipient -Identity "Name Lastname" | Select-Object -ExpandProperty EmailAddresses