Quantcast
Channel: Tachytelic.net
Viewing all articles
Browse latest Browse all 210

Office 365: How to add or remove an email alias using Powershell

$
0
0

Use the Powershell cmdlet Set-Mailbox to check email aliases assigned to Office 365 accounts, add aliases or remove aliases. Additionally the handy form underneath will generate the correct Powershell commands for you.

Check current email aliases assigned to an Office 365 account:

Get-Mailbox mailboxName | select -ExpandProperty emailaddresses | Select-String -Pattern "smtp"

Add an email alias to an Office 365 account:

Set-Mailbox mailboxName -EmailAddresses @{Add='alias@yourdomain.com'}

Remove an email alias from an Office 365 account:

Set-Mailbox MailboxName -EmailAddresses @{Remove=’alias@somedomain.co.uk’}

Or you can just use the form below and the required Powershell will be generated for you….

Now that you have got multiple email aliases, here is how to configure Outloook so that you can send from an alias.

The post Office 365: How to add or remove an email alias using Powershell appeared first on Tachytelic.net.


Viewing all articles
Browse latest Browse all 210

Trending Articles