Examples/Resources/SPManagedMetaDataServiceApp/6-SetContentTypeSettings.ps1

<#
.EXAMPLE
    This example shows how to deploy the Managed Metadata service app to the local SharePoint farm
    and also include a specific list of users to be the term store administrators.
#>


Configuration Example
{
    param(
        [Parameter(Mandatory = $true)]
        [PSCredential]
        $SetupAccount
    )
    Import-DscResource -ModuleName SharePointDsc

    node localhost {
        SPManagedMetaDataServiceApp ManagedMetadataServiceApp
        {
            Name                          = "Managed Metadata Service Application"
            PSDscRunAsCredential          = $SetupAccount
            ApplicationPool               = "SharePoint Service Applications"
            DatabaseServer                = "SQL.contoso.local"
            DatabaseName                  = "SP_ManagedMetadata"
            ContentTypeHubUrl             = "http://contoso.sharepoint.com/sites/ct"
            ContentTypePushdownEnabled    = $true
            ContentTypeSyndicationEnabled = $true
        }
    }
}