Add Scripts/Powershell/Azure/Check Email Aliases.md

This commit is contained in:
Nicole Rappe
2024-01-23 20:28:03 -07:00
parent 975db0a17d
commit 49af9e9001

View File

@ -0,0 +1,11 @@
The uppercase `SMTP` address is the primary address, while lowercase `smtp` are aliases. You can find the value in active directory in **"User > Attribute Editor > proxyAddresses"**.
``` powershell
Get-AzureADUser -ObjectId "user@domain.com" | Select -Property ProxyAddresses
```
!!! example "Example Output"
``` powershell
smtp:alias@domain.com
smtp:alias@domain.onmicrosoft.com
SMTP:primaryaddress@domain.com
```