We use cookies to improve your experience.
By your continued use of this site you accept such use.
For more details please see our privacy policy and cookies policy.

Script Repository

Create Microsoft 365 contact based on AD contact

August 29, 2023 Views: 3305

The script creates a Microsoft 365 (Office 365) contact based on an existing Active Directory contact.

Edit Remove
PowerShell
# Connect to Exchange Online
$Context.CloudServices.ConnectExchangeOnline()

# Create contact
try
{
    New-MailContact -Name "%name%" -ExternalEmailAddress "%mail%" -DisplayName "%displayName%" -FirstName "%firstname%" -LastName "%lastname%" -ErrorAction Stop
}
catch
{
    $Context.LogMessage("An error occurred when creating a contact. Error: " + $_.Exception.Message, "Warning")
}
Comments 0
Leave a comment
Loading...

Got questions?

Support Questions & Answers