Citrix Virtual Apps and Desktops 2311 SDK

Get-AppLibIsolationGroup

Gets the details of an isolation group held in the application library.

Syntax

Get-AppLibIsolationGroup
   [-IncludePolicy <Boolean>]
   [-LoggingId <Guid>]
   [<CitrixCommonParameters>]
   [<CommonParameters>]
<!--NeedCopy-->
Get-AppLibIsolationGroup
   [[-IsolationGroupUid] <Int32>]
   [-IncludePolicy <Boolean>]
   [-LoggingId <Guid>]
   [<CitrixCommonParameters>]
   [<CommonParameters>]
<!--NeedCopy-->
Get-AppLibIsolationGroup
   [[-Name] <String>]
   [-IncludePolicy <Boolean>]
   [-LoggingId <Guid>]
   [<CitrixCommonParameters>]
   [<CommonParameters>]
<!--NeedCopy-->

Description

The application library holds the information about isolation groups, their location on the network and the packages they contain.

Examples

EXAMPLE 1

Gets the details for all of the isolation groups in the AppLibrary.

Get-AppLibIsolationGroup
<!--NeedCopy-->

EXAMPLE 2

Gets the details of the isolation group named MyIsolationGroup.

Get-AppLibIsolationGroup -Name "MyIsolationGroup"
<!--NeedCopy-->

EXAMPLE 3

Gets the details for the isolation with a Uid of 5.

Get-AppLibIsolationGroup -IsolationGroupUid 5
<!--NeedCopy-->

EXAMPLE 4

Gets the details for the isolation with a Uid of 5 and also returns the Citrix Group Policy data that defines the object.

Get-AppLibIsolationGroup -IsolationGroupUid 5 -IncludePolicy $true
<!--NeedCopy-->

Parameters

-IsolationGroupUid

The App Library’s internal unique identifier of the isolation group.

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

-Name

The name of the isolation group to fetch.

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

-IncludePolicy

The option to retrieve the Isolation Group policy.

Type: Boolean
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 this cmdlet call forms a part of. Citrix Studio and 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 can’t pipe objects to this cmdlet.

Outputs

Citrix.AppLibrary.Sdk.IsolationGroup

An object representing the details needed to identify an isolation group.

Notes

Pass in the isolation group’s uid to retreive a single isolation group.

Pass in a library uid to retrieve all of the isolation groups in that library.

Call the cmdlet without any parameters to retieve all of the isolation groups in the AppLibrary.

Get-AppLibIsolationGroup