Citrix Virtual Apps and Desktops SDK

Get-BrokerDesktopGroupAnalysisReport

Gets the detailed AppDNA compatibility report for AppDisk(s) associated with a particular Desktop Group.

Syntax


Get-BrokerDesktopGroupAnalysisReport [-InputObject] <DesktopGroup[]> [-RetrieveReportContentsAsMHT] [-AdminAddress <String>] [-BearerToken <String>] [-AdminClientIP <String>] [-TraceParent <String>] [-TraceState <String>] [-VirtualSiteId <String>] [[-AppDiskUid] <Guid>] [<CommonParameters>]

<!--NeedCopy-->

Detailed Description

Gets the detailed AppDNA compatibility report for an AppDisk associated with a particular Desktop Group.

Parameters

Name Description Required? Pipeline Input Default Value
InputObject The desktop group(s) on which to retrieve the detailed reports true true (ByValue)  
RetrieveReportContentsAsMHT Retrieve the report as a MHT file false false  
AdminAddress Specifies the address of a XenDesktop controller that the PowerShell snapin will connect to. This can be provided as a host name or an IP address. false false Localhost. Once a value is provided by any cmdlet, this value will become the default.
BearerToken Specifies the bearer token assigned to the calling user false false  
AdminClientIP Internal use only. false false  
TraceParent Specifies the trace parent assigned for internal diagnostic tracing use false false  
TraceState Specifies the trace state assigned for internal diagnostic tracing use false false  
VirtualSiteId Specifies the virtual site the PowerShell snap-in will connect to. false false  
AppDiskUid AppDisk unique identifier. If set, the report will be filtered down to only include this AppDisk. false false  

Input Type

Citrix.Broker.Admin.Sdk.Desktopgroup

You can pipe the desktop groups to Get-BrokerDesktopGroupAnalysisReport.

Return Values

Citrix.Broker.Admin.Sdk.Analysisreport

The analysis reports for the desktop groups

Examples

Example 1


Get-BrokerDesktopGroupAnalysisReport -InputObject 36

<!--NeedCopy-->

Description

Retrieves the report for the desktop group with Uid 36

Example 2


$appDisk = Get-AppLibAppDisk -AppDiskName "MyAppDisk"

          Get-BrokerDesktopGroupAnalysisReport -InputObject 36 -AppDiskUid $appDisk.AppDiskUid

<!--NeedCopy-->

Description

Retrieves the report for the desktop group with Uid 36 filtered down to AppDisk “MyAppDisk”

Get-BrokerDesktopGroupAnalysisReport