Functions/Get-MSPCompleteGroupExtendedPropertyList.ps1
<#
.SYNOPSIS This function returns a list of the extended properties present in an MSPComplete group object. #> function Get-MSPCompleteGroupExtendedPropertyList { # Return the list of properties return @( "PrimaryEmailAddress" ) } |