Functions/Get-MSPCompleteUserToExchangeOnlineUserPropertyMap.ps1
<#
.SYNOPSIS This function returns a hash table that maps MSPComplete user properties to Exchange Online user properties #> function Get-MSPCompleteUserToExchangeOnlineUserPropertyMap { # Return the map of properties return @{ FirstName = "FirstName" LastName = "LastName" DisplayName = "DisplayName" FullName = "Name" PrimaryEmailAddress = "UserPrincipalName" UserPrincipalName = "UserPrincipalName" } } |