Ignore requests for read receipts on a specific mailbox
Our ServiceDesk application collects mail from a single mailbox in our Exchange 2016 on-premise environment (servicedesk@ourdomain.com). Mail is also sent to several other mailboxes and forwarded on to the ServiceDesk mailbox (mainly for different languages). A number of users have…
Change a mailbox type using PowerShell
Today I needed to convert an existing user mailbox into a room mailbox. I was able to do this quite easily using the Set-Mailbox cmdlet. Here is an example of how to do this: Set-Mailbox -Identity “boardroom” -Type Room Note:…
Adding an additional email address using PowerShell
Today I have to add an additional SMTP address to some existing user mailboxes. This is easy enough to do in the Exchange Management Console but can also be achieved using the following PowerShell command: Set-Mailbox <alias> -EmailAddresses @{Add=’user@domain.com’} Similarly, addressess can…