Citrix Virtual Apps and Desktops 2311 SDK

New-BrokerGpoPolicySet

Creates a new GPO policy set.

Syntax

New-BrokerGpoPolicySet
   [-Description <String>]
   [-Name] <String>
   -PolicySetType <String>
   [-Scope <String[]>]
   [-LoggingId <Guid>]
   [<CitrixCommonParameters>]
   [<CommonParameters>]
<!--NeedCopy-->

Description

Create a new GPO policy set.

Examples

EXAMPLE 1

Creates a new policy set for a configuration slot without a description. The caller should keep the PolicySetGuid property returned in the object for later use.

New-BrokerGpoPolicySet -PolicySetType SlotPolicies
<!--NeedCopy-->

Parameters

-Name

The name of the policy set. It must be unique among all policy sets.

Type: String
Position: 2
Default value: None
Required: True
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: True

-PolicySetType

The type of the policy set. Valid values are: SitePolicies, SlotPolicies, and SiteTemplate. SitePolicies specifies a policy set that stores the default policies for the site. SlotPolicies specifies a policy set that stores the policies for a configuration slot. SiteTemplate specifies a policy set that stores the site’s policy templates.

Type: String
Accepted values: CustomTemplates, DeliveryGroupPolicies, SitePolicies, SiteTemplates
Position: Named
Default value: None
Required: True
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Description

A short description describing the use of this policy set.

Type: String
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: True

-Scope

Specifies the name of the delegated administration scope to which the policy set belongs.

Type: String[]
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-LoggingId

Specifies the identifier of the high level operation that this cmdlet call forms a part of. Desktop Studio and Desktop Director typically create High Level Operations. PowerShell scripts can also wrap a series of cmdlet calls in a High Level Operation by way of the Start-LogHighLevelOperation and Stop-LogHighLevelOperation cmdlets.

Type: Guid
Position: Named
Default value: None
Required: False
Accept pipeline input: False
Accept wildcard characters: False

CitrixCommonParameters

This cmdlet supports the common Citrix parameters: -AdminAddress, -AdminClientIP, -BearerToken, -TraceParent, -TraceState and -VirtualSiteId. For more information, see about_CitrixCommonParameters.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

None

You cannot pipe input into this cmdlet.

Outputs

Citrix.Broker.Admin.SDK.GpoPolicySet

New-BrokerGpoPolicySet returns a GPO policy set object.

New-BrokerGpoPolicySet