Set-Provimageversion¶
Changes the parameter values for a image version.
Syntax¶
Set-ProvImageVersion [-PreparedImageVersionUid] <Guid> -Description <String> [-LoggingId <Guid>] [-BearerToken <String>] [-TraceParent <String>] [-TraceState <String>] [-VirtualSiteId <String>] [-AdminAddress <String>] [<CommonParameters>]<br><br>Set-ProvImageVersion -PreparedImageDefinitionName <String> -PreparedImageVersionNumber <String> -Description <String> [-LoggingId <Guid>] [-BearerToken <String>] [-TraceParent <String>] [-TraceState <String>] [-VirtualSiteId <String>] [-AdminAddress <String>] [<CommonParameters>]
Detailed Description¶
Provides the ability to update the parameters of an existing image version.
The following parameters are allowed to be updated:
- The description of the image version.
Related Commands¶
Parameters¶
Name | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|
PreparedImageVersionUid | The identifier of the image version to be updated. | true | false | |
Description | The description of the image version to be updated. | true | false | |
PreparedImageDefinitionName | The name of the image definition to be updated. | true | false | |
PreparedImageVersionNumber | The version number of the image version to be updated. | 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 | |
BearerToken | Specifies the bearer token assigned to the calling user | 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 user | false | false | |
VirtualSiteId | Specifies the virtual site the PowerShell snap-in will connect to. | false | false | |
AdminAddress | The address of a Citrix Virtual Apps and Desktops 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¶
Citrix.Machinecreation.Sdk.Imagedefinition¶
This object provides details of the image definitions and contains the following information:
CreateTime <DateTime> The date and time when the image version was created. Description <string> The description of the image version. DiskSize <int> The disk size (in GB) that will be used to create VMs. Error <string> Error state that has occurred with this image version. HostingUnitUid <Guid> The unique identifier of the hosting unit being used by this image scheme. ImageRuntimeInfo <string> The image runtime information like operating system info, VDA components, etc. ImageStatus <string> The status of the provisioning scheme image. ImageVersionMetadata <string> The metadata associated with this image version. MasterImageId <string> The unique identifier of the snapshot, as assigned by the hosting unit. MasterImageVM <string> The inventory path to the VM snapshot copy used by this provisioning scheme. PageFileSettings <string> The page file settings to meet hypervisor-specific features demands. PreparedImageDefinitionName <string> The name of the image definition which is used for this image version. PreparedImageDefinitionUid <Guid> The unique identifier of the image definition which is used for this image version. PreparedImageReplicas Image replication information for this image version. PreparedImageSchemeUid <Guid> The unique identifier of the image scheme which is used for this image version. PreparedImageVersionNumber <string> The version number of the image version. PreparedImageVersionUid <Guid> The unique identifier for the image version. UpdatePageFileSettings <bool> Whether to update page file settings for write back cache VMMetadata <char[]> The metadata that will be used to created VMs in a plain text format. Warnings <Citrix.MachineCreation.Sdk.ProvSchemeWarning[]> Warning states that have occurred with this provisioning scheme. WriteBackCacheDiskIndex <int> The disk index for the write-back cache disk. Specify only when UseWriteBackCache is true. WriteBackCacheDiskSize <int> The size of the write-back cache disk to be used in GB. Specify only
when UseWriteBackCache is true. WriteBackCacheMemorySize <int> The size of the write-back memory cache in MB. Specify only when UseWriteBackCache is true.
Notes¶
In the case of failure, the following errors can result.
Error Codes
-----------
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
for various reasons.
CommunicationError
An error occurred while communicating with the service.
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.
ExceptionThrown
An unexpected error occurred. To locate more details, see the Windows event logs on the controller being used or examine the XenDesktop logs.
UnsupportedByServer
The requested operation is not supported by this version of the service.
Examples¶
Example 1¶
c:\PS>Set-ProvImageVersion -PreparedImageDefinitionName MyImage -PreparedImageVersionNumber 1 -Description "Windows image"<br><br> CreateTime : 5/19/2022 3:20:23 AM<br><br> Description : Windows image<br><br> DiskSize : 32<br><br> Error :<br><br> HostingUnitUid : b86b4442-6ecb-4b73-a655-7ca7170e19e5<br><br> ImageRuntimeInfo :<br><br> ImageStatus : Prepared<br><br> ImageVersionMetadata : {}<br><br> MasterImageId : hu-dev-testing-rg/hu-dev-tsvda-snapshot<br><br> MasterImageVM : /East US.region/image.folder/hu-dev-testing-rg.resourcegroup/hu-dev-tsvda-snapshot.snapshot<br><br> PageFileSettings : D:\pagefile.sys 0 0<br><br> PreparedImageDefinitionName : MyImage<br><br> PreparedImageDefinitionUid : 6d67c0a5-6ecc-4c46-8404-156205635cf4<br><br> PreparedImageReplicas : {57fc60c3-eb9b-4d38-8646-0afceec85335}<br><br> PreparedImageSchemeUid : 57ce7bbc-7193-47df-95d4-d4999c720cac<br><br> PreparedImageVersionNumber : 2<br><br> PreparedImageVersionUid : d366d140-1ec0-464f-aea0-77b706e94580<br><br> UpdatePageFileSettings : False<br><br> VMMetadata :<br><br> Warnings : {}<br><br> WriteBackCacheDiskIndex : 0<br><br> WriteBackCacheDiskSize : 0<br><br> WriteBackCacheMemorySize : 0
Description¶
Update a image definition description with image definition name "MyImage" and image version number "1".