From 88922aa060667386aa3527dfa36fb3bf0eeed938 Mon Sep 17 00:00:00 2001 From: ajitchelat Date: Wed, 18 Jan 2017 14:58:46 +0530 Subject: [PATCH] Fix for issue #9 --- .../Get-AppLibAppDiskAppDNAReport.md | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/AppLibrary/Get-AppLibAppDiskAppDNAReport.md b/docs/AppLibrary/Get-AppLibAppDiskAppDNAReport.md index 308f303..97a5a69 100755 --- a/docs/AppLibrary/Get-AppLibAppDiskAppDNAReport.md +++ b/docs/AppLibrary/Get-AppLibAppDiskAppDNAReport.md @@ -1,6 +1,6 @@ # Get-AppLibAppDiskAppDNAReport - Gets the AppDNA compatibility report an AppDisk. + Gets the AppDNA compatibility report for an AppDisk. ## Syntax ``` @@ -10,36 +10,36 @@ Get-AppLibAppDiskAppDNAReport [-AppDiskUid] -FileName [-LoggingI ## Detailed Description Gets the detailed AppDNA compatibility report for the specified AppDisk. -## Related Commands - * [Get-AppLibDesktopGroupAppDNAReport](Get-AppLibDesktopGroupAppDNAReport.html) - * [Get-AppLibDesktopGroupAppDiskAppDNAReport](Get-AppLibDesktopGroupAppDiskAppDNAReport.html) - * [Get-AppLibAppDisk](Get-AppLibAppDisk.html) +## Related Commands + * [Get-AppLibDesktopGroupAppDNAReport](Get-AppLibDesktopGroupAppDNAReport.html) + * [Get-AppLibDesktopGroupAppDiskAppDNAReport](Get-AppLibDesktopGroupAppDiskAppDNAReport.html) + * [Get-AppLibAppDisk](Get-AppLibAppDisk.html) ## Parameters | Name | Description | Required? | Pipeline Input | Default Value | -| --- | --- | --- | --- | --- | -| AppDiskUid | The unique identifier of the AppDisk for which to retrieve the report. | true | false | | -| FileName | The file name to which the report will be saved. | true | 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. | false | false | | -| AdminAddress | Specifies the address of a XenDesktop controller the PowerShell snap-in will connect to. You can provide this as a host name or an IP address. | false | false | Localhost. Once a value is provided by any cmdlet, this value becomes the default. | - -## Input Type +| --- | --- | --- | --- | --- | +| AppDiskUid | The unique identifier of the AppDisk for which to retrieve the report. | true | false | | +| FileName | The file name to which the report will be saved. | true | 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. | false | false | | +| AdminAddress | Specifies the address of a XenDesktop controller the PowerShell snap-in will connect to. You can provide this as a host name or an IP address. | false | false | Localhost. Once a value is provided by any cmdlet, this value becomes the default. | + +## Input Type ### String - -## Return Values + +## Return Values ### Citrix.AppLibrary.Sdk.AppLibraryStatus - An object indicating the success of the report export operation -## Examples - + An object indicating the success of the report export operation +## Examples + ### EXAMPLE 1 ``` C:\PS>Get-AppLibAppDiskAppDNAReport -AppDiskUid "F0A272E2-0268-48E3-8855-CFED44236B8E" -FileName "C:\Windows\Temp\Report.mht" ``` - Description
-----------
Saves the report of the specified AppDisk to C:\Windows\Temp\Report.mht + Description
-----------
Saves the report of the specified AppDisk to C:\Windows\Temp\Report.mht ### EXAMPLE 2 ``` -C:\PS>$AppDisk = Get-AppLibAppDisk -Name "MyAppDisk" - C:\PS>Get-AppLibAppDiskAppDNAReport -AppDiskUid $AppDisk.ApppDiskUid -FileName "C:\Windows\Temp\Report.mht" +C:\PS>$AppDisk = Get-AppLibAppDisk -Name "MyAppDisk" + C:\PS>Get-AppLibAppDiskAppDNAReport -AppDiskUid $AppDisk.ApppDiskUid -FileName "C:\Windows\Temp\Report.mht" C:\PS>Invoke-Item "C:\Windows\Temp\Report.mht" ``` Description
-----------
Finds the Uid for the AppDisk named "My AppDisk" and uses it to save the report to C:\Windows\Temp\Report.mht