-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Confirm-VusSelection
This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
Confirm-VusSelection
Validate the component selection choices at catalog level that can be Included/Excluded during an upgrade using VDA Upgrade Service
Syntax
Confirm-VusSelection
-CatalogUid <Int32>
[-SelectedComponents <ComponentSelection[]>]
[-ExcludedComponents <ComponentSelection[]>]
[-Features <String[]>]
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUid <Int32>
[-Features <String[]>]
-SelectedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUid <Int32>
[-Features <String[]>]
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUid <Int32>
[-Features <String[]>]
-SelectedComponentsXml <String>
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUuid <String>
[-SelectedComponents <ComponentSelection[]>]
[-ExcludedComponents <ComponentSelection[]>]
[-Features <String[]>]
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUuid <String>
[-Features <String[]>]
-SelectedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUuid <String>
[-Features <String[]>]
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogUuid <String>
[-Features <String[]>]
-SelectedComponentsXml <String>
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogName <String>
[-SelectedComponents <ComponentSelection[]>]
[-ExcludedComponents <ComponentSelection[]>]
[-Features <String[]>]
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogName <String>
[-Features <String[]>]
-SelectedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogName <String>
[-Features <String[]>]
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Confirm-VusSelection
-CatalogName <String>
[-Features <String[]>]
-SelectedComponentsXml <String>
-ExcludedComponentsXml <String>
[-LoggingId <Guid>]
[<CitrixCommonParameters>]
[<CommonParameters>]
<!--NeedCopy-->
Description
The Confirm-VusSelection cmdlet is used to verify and Validate the component Selections(New Components to be included in Upgrade), Exclusions(Installed Components that should not be upgraded) and features to be used in a Catalog Upgrade using the VDA Upgrade Service.
Confirm-VusSelection returns true if the Selection is Valid. If the Selection is invalid it returns false and information as to why the selection is invalid.
Examples
EXAMPLE 1
SCList represents the Selected Components List comprising of ComponentA and ComponentB with Component ID’s indicated below, which were previously not installed on VDAs of catalog but needs to be installed/included during the VDA Upgrade.
$ComponentA = [PSCustomObject]@{ ComponentId = [System.guid]::new(‘396394b3-53f0-48e0-8d8c-61dad39e3f17’) Parameters = $EmptyParamList }
$ComponentB = [PSCustomObject]@{ ComponentId = [System.guid]::new(‘3ce3c043-5f32-497c-9099-0e1a6dc06647’) Parameters = $EmptyParamList } $SCList = @($ComponentA, $ComponentB)
$ComponentC Represent a Component installed on all VDAs of a Catalog but needs to be excluded during the VDA Upgrade. $ComponentC = [PSCustomObject]@{ ComponentId = [System.guid]::new(‘bddec677-9afb-49f0-9908-59a64f0f54f8’) Parameters = $EmptyParamList }
$FeatureA and FeatureB represents features that needs to be enabled on the VDAs of the catalog during the Upgrade.
$FeatureA = ‘44FF6E61-E3CC-45D0-BE9B-F52B5AB72A08’ $FeatureB = ‘D9167E2C-2088-4301-BFA1-698F934B4E6B’
$FeaturesList = @($FeatureA,$FeatureB)
The above input parameters instruct the cmdlet to check if the ComponentA and ComponentB can be installed/Included for installation and ComponentC can be excluded from installation and FeatureA can be enabled on the VDAs of the Catalog during the next Catalog Upgrade scheduled from VDA Upgrade Service.
The cmdlet validates with the VUS SDK and responds with
- true: If the above Selection of Selected Components and Excluded Components and Features is Valid.
- false: If the above Selection is Invalid with an associated message as to why the selection is invalid.
Confirm-VusSelection -CatalogUid 1 -SelectedComponents SCList -ExcludedComponents $ComponentC -Features $FeaturesList
<!--NeedCopy-->
EXAMPLE 2
The XML Schema Definition (xsd) with which the xml string provided for parameters: SelectedComponentsXml and ExcludedComponentsXml is validated is as given below: The ComponentId, ParamterId, FeatureId needed can be obtained from the output of Get-VusComponents.
SCXml represents a ComponentList in XML String format comprising of Component with Component ID(f515acf6-a309-4fe1-8ec6-5023cd0073f4) which has a Paramter with ParameterId(9c365ddc-6e25-48a0-9390-e58c03137d8a) and ParameterValue(testval) that was previously not installed on VDAs of catalog but needs to be installed/included during the VDA Upgrade.
$ScXml = “ “
$EcXml represents 2 Components in XML String format with ComponentIDs:(396394b3-53f0-48e0-8d8c-61dad39e3f17, 3ce3c043-5f32-497c-9099-0e1a6dc06647) that is installed on all VDAs of a Catalog but needs to be excluded during the VDA Upgrade.
$EcXml = “ “
Features represents the List of strings (feature ID Guids) that needs to be enabled on the VDAs of the catalog during the Upgrade.
$FeatureA and FeatureB represents features that needs to be enabled on the VDAs of the catalog during the Upgrade.
$FeatureA = ‘44FF6E61-E3CC-45D0-BE9B-F52B5AB72A08’
$FeatureB = ‘D9167E2C-2088-4301-BFA1-698F934B4E6B’
$FeaturesList = @($FeatureA,$FeatureB)
The above input parameters instruct the cmdlet to check if the components represented by ScXml can be installed/Included for installation and Component represented by EcXml can be excluded from installation and Features represented by FeatureList can be enabled on the VDAs of the Catalog during the next Catalog Upgrade scheduled from VDA Upgrade Service.
The cmdlet validates with the VUS SDK and responds with
- true: If the above Selection of Selected Components and Excluded Components and Features is Valid.
- false: If the above Selection is Invalid with an associated message as to why the selection is invalid.
Confirm-VusSelection -CatalogUid 1 -SelectedComponentsXml $ScXml -ExcludedComponentsXml $EcXml -Features $Featurelist
<!--NeedCopy-->
Parameters
-CatalogUid
UID of the catalog provided by broker service
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SelectedComponentsXml
List of New Components(in XML format) that are to be included/added in the Upgrade. The XML Scehma definition(xsd) is provided in the examples section.ComponentId, ParameterId can be obtianed from the Get-VusComponents cmdlet.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ExcludedComponentsXml
List of Installed Components that are to be excluded/omitted in the Upgrade.This parameter accepts XML string. The XML Scehma definition(xsd) is provided in the examples section. ComponentId, ParameterId can be obtianed from the Get-VusComponents cmdlet.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CatalogUuid
UUID of the catalog provided by broker service
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CatalogName
Name of the catalog provided by broker service
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SelectedComponents
List of New Components that are to be included/added in the Upgrade. This parameter accepts a List of Component PS Object. ComponentId and ParameterId can be obtianed from the Get-VusComponents cmdlet.
Type: | ComponentSelection[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ExcludedComponents
List of Installed Components that are to be excluded/omitted in the Upgrade. This parameter accepts a List of Component PS Object. ComponentId and ParameterId can be obtianed from the Get-VusComponents cmdlet.
Type: | ComponentSelection[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Features
List of string (FeatureId GUIDs) to be enabled on VDA. FeatureId can be obtained from the Get-VusComponents cmdlet
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
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
Guid
Citrix.VdaUpdateService.Sdk.ComponentSelection
Component Information for the Selected/Excluded Component
Citrix.VdaUpdateService.Sdk.ComponentParameter
Feature/Parameter information for the selected feature/parameter
Outputs
Citrix.VdaUpdateService.Sdk.ConfirmVus
Info/result related to Component Selections and Exclusion
Related Links
Share
Share
In this article
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.