Citrix Virtual Apps and Desktops SDK

Export-ProvMachineProfile

Introduced in: Citrix Virtual Apps and Desktop 7 2407

Get the machine profile of a prov scheme.

Syntax

Export-ProvMachineProfile
      [-ProvisioningSchemeUid <Guid>]
      [[-ProvisioningSchemeName] <String>]
      [-LoggingId <Guid>]
      [<CitrixCommonParameters>]
      [<CommonParameters>]
<!--NeedCopy-->

Description

The primary use of this cmdlet is to export the machine profile contents for a provisioning scheme.

Examples

EXAMPLE 1

Exports the deparameterized machine profile for the provisioning scheme with the name “catalog”.

Export-ProvMachineProfile -ProvisioningSchemeName "catalog"
<!--NeedCopy-->

Parameters

-ProvisioningSchemeUid

The unique identifier of the provisioning scheme.

Type: Guid
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

-ProvisioningSchemeName

The name of the provisioning scheme.

Type: String
Position: 2
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

None

You can’t pipe objects to this cmdlet.

Outputs

String

A JSON encoded string representing a deparameterized copy of the provisioning scheme’s machine profile.

Notes

In the case of failure, the following errors can result.

Error Codes


ProvisioningSchemeNotFound

The specified provisioning scheme could not be located.

ProvisioningSchemeNotReady

The specified provisioning scheme is not in Ready state.

MachineProfileDoesNotExist

The catalog does not have a machine profile.

CapabilityNotSupported

The hypervisor does not support machine profile export.

Export-ProvMachineProfile