# Import-AppLibAppDisk
Imports an AppDisk into the Application library service
Syntax
Import-AppLibAppDisk -HostingUnitName <String> -HypervisorDiskId <String> -AppDiskName <String> -PreparationMachine <String> [-Scope <String[]>] [-RunAsynchronously] [-PurgeJobOnSuccess] [-AppDiskDescription <String>] [-SkipAppDnaAnalysis] [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>] Import-AppLibAppDisk -HostingUnitUid <Guid> -HypervisorDiskId <String> -AppDiskName <String> -PreparationMachine <String> [-Scope <String[]>] [-RunAsynchronously] [-PurgeJobOnSuccess] [-AppDiskDescription <String>] [-SkipAppDnaAnalysis] [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>]
Detailed Description
Lets you import a separately created AppDisk to the Application library service.
Related Commands
Parameters
Name | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|
HypervisorDiskId | The infrastructure UID (as returned by Get-HypConfigurationDataForItem) of the disk to import. | true | false | |
AppDiskName | The name of the AppDisk. | true | false | |
PreparationMachine | The SID of the machine to use as the preparation machine for this operation. The machine must be within a valid Machine Catalog. | true | false | |
HostingUnitName | The name of the hosting unit used for the AppDisk. | true | false | |
HostingUnitUid | The identifier for the hosting unit used for the AppDisk. | true | false | |
Scope | The administration scopes to be applied to the new AppDisk. | false | false | |
RunAsynchronously | Indicates whether or not the command returns before it is complete. If specified, the command returns an identifier for the task that was created. This task can be monitored using the Get-AppLibTask command. | false | false | false |
PurgeJobOnSuccess | Indicates that the task history is removed from the database when the task has finished. This can only be specified for tasks that are not run asynchronously. | false | false | |
AppDiskDescription | The description of the AppDisk. | false | false | |
SkipAppDnaAnalysis | Indicates that AppDNA analysis of the AppDisk should be skipped. | false | false | 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
Return Values
System.Guid
When the RunAsynchronously identifier is specified, this GUID is returned and provides the task identifier### System.Management.Automation.PSCustomObject
System.Management.Automation.PSCustomObject This object provides details of the task that was run and contains the following information:
TaskId
In case of failure, the following errors can result.
Error Codes
-----------
JobCreationFailed
The requested task could not be started.
DatabaseError
An error occurred in the service while attempting a database operation.
DatabaseNotConfigured
The operation could not be completed because the database for the service is not configured.
ServiceStatusInvalidDb
An error occurred in the service while attempting a database operation. Communication with the database failed
for various reasons.
CommunicationError
An error occurred while communicating with the service.
InvalidParameterCombination
Both PurgeJobOnSuccess and RunAsynchronously were specified. When running asynchronously, the cmdlet terminates before the job does, so it cannot clean up the completed job.
PermissionDenied
The user does not have administrative rights to perform this operation.
ConfigurationLoggingError
The operation could not be performed because of a configuration logging error.
ScopeNotFound
One or more of the scopes nominated for the imported AppDisk do not exist.
ExceptionThrown
An unexpected error occurred. To locate more details, see the Windows event logs on the controller being used, or examine the XenDesktop logs.
Examples
EXAMPLE 1
C:\PS> Import-AppLibAppDisk -AppDiskName MyImportedAppDisk -AppDiskDescription "Imports new applications" -HostingUnitName XenHu -PreparationMachine S-1-5-21-2316621082-1546847349-2782505528-1165 TaskId : 90e93b9d-a225-4701-ad50-fa1546af35ac AppDiskName : MyImportedAppDisk AppDiskUid : d9ba6487-05f8-48ad-a178-1794605e2b8e Active : False SkipAppDnaAnalysis : False DiskLocalUid : 7b4c01c4-72fa-4c80-913d-c6df785f4297 DiskLocalVersion : 25118c6e-a737-4fb9-b4b3-121910a73160 DateStarted : 17/11/2015 08:22:22 LastUpdateTime : 17/11/2015 09:10:18 DateFinished : 17/11/2015 09:10:18 Type : ImportAppDisk Metadata : {} TaskState : Finished TaskStateInformation : TaskProgress : 100 TerminatingError : RemoteTaskId : d2127904-a149-4dce-ae82-f9671a53f6fd HostingUnitName : XenHU HostingUnitUid : 01a4a008-8ce8-4165-ba9c-cdf15a6b0501 Host : MyHost VirtualDiskId : 7ce3c9a5-2888-45ba-8629-398f9e4eba7d CurrentOperation : ActiveElapsedTime : 2786 DiskId : AppDiskBase RunAppDnaAnalysis : True ReservedMachineSid : S-1-5-21-2316621082-1546847349-2782505528-1165
Description
-----------
Imports a new AppDisk with the name "MyImportedAppDisk" from the one labelled "AppDiskBase" using the hosting unit "XenHu" and the preparation machine "S-1-5-21-2316621082-1546847349-2782505528-1165".