Functions/Get-MSPCompleteUserExtendedPropertyList.ps1
<#
.SYNOPSIS This function returns a list of the extended properties present in an MSPComplete User object. #> function Get-MSPCompleteUserExtendedPropertyList { # Return the list of properties return @( "AddressLine1", "AddressLine2", "City", "StateOrProvince", "PostalOrZipCode", "CountryOrRegion", "MobilePhoneNumber", "LandLinePhoneNumber", "CompanyName", "Department", "JobTitle", "Salutation", "ManagerEmailAddress", "OnPremisesSecurityIdentifier" ) } |