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

May 08, 2023 Views: 2817

The script creates a Microsoft 365 (Office 365) contact based on an exeisting 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