Skip to content

Commit

Permalink
Fix for issue #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitchelat authored Jan 18, 2017
1 parent 6ef026f commit 88922aa
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions docs/AppLibrary/Get-AppLibAppDiskAppDNAReport.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Get-AppLibAppDiskAppDNAReport

Gets the AppDNA compatibility report an AppDisk.
Gets the AppDNA compatibility report for an AppDisk.

## Syntax
```
Expand All @@ -10,36 +10,36 @@ Get-AppLibAppDiskAppDNAReport [-AppDiskUid] <Guid> -FileName <String> [-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<br>-----------<br>Saves the report of the specified AppDisk to C:\Windows\Temp\Report.mht
Description<br>-----------<br>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<br>-----------<br>Finds the Uid for the AppDisk named "My AppDisk" and uses it to save the report to C:\Windows\Temp\Report.mht

0 comments on commit 88922aa

Please sign in to comment.