Functions/Organization/Get-CdsOrganizationFeatures.ps1

<#
    .SYNOPSIS
    Get Organization Features
#>

function Get-CdsOrganizationFeatures {
    [CmdletBinding()]
    param
    (
        [Parameter(Mandatory=$false, ValueFromPipeline)]
        [Microsoft.Xrm.Tooling.Connector.CrmServiceClient]
        $CdsClient = $Global:CdsClient,

        [Parameter(Mandatory = $false)]
        [ValidateNotNullOrEmpty()]
        [String]
        $Name
    )
    begin {   
        $StopWatch = [System.Diagnostics.Stopwatch]::StartNew(); 
        Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Start -Parameters ($MyInvocation.MyCommand.Parameters); 
    }    
    process {
        $organization = $CdsClient | Get-CdsOrganization -Columns "featureset";
        $features = @{};

        if($organization.featureset)
        {
            $featuresXml = [xml] $organization.featureset;
            if($Name)            {
                $feature = $featuresXml.features.feature | where-object -Property name -eq $Name; 
                if($feature)
                {
                    $features[$feature.name] = $feature.value;
                }
            }
            else {
                foreach($feature in $featuresXml.features.feature)
                {
                    $features[$feature.name] = $feature.value;
                }                
            }
        }
        return $features;
    }
    end {
        $StopWatch.Stop();
        Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Stop -StopWatch $StopWatch;
    }    
}

Export-ModuleMember -Function Get-CdsOrganizationFeatures -Alias *;