top of page
Add Contacts
#Create Mail Contact
New-MailContact -Name "John Smith" -DisplayName "John Smith" `
-ExternalEmailAddress "Joe.Smith@SomeURL.com" -FirstName "John" -LastName "Smith"
​
#Pull Mail Contact
Get-Mailcontact -Identity "John Smith" | Select *
​
#Remove Contact
Remove-MailContact -Identity "John Smith"
​
bottom of page