# Add-HypMetadata
Adds metadata to a hypervisor connection or a hosting unit.
Syntax
Add-HypMetadata [-LiteralPath] <String> [-Property] <String> [-Value] <String> [-LoggingId <Guid>] [-AdminAddress <String>] [<CommonParameters>]
Detailed Description
Use this command to store additional custom data against a hosting unit or hypervisor connection. This data is not used by the Machine Creation Service, and is provided only for consumers of the services to store any data that may be required for their operations. The metadata is returned along with the hypervisor connection or hosting unit that it is assigned to.
Related Commands
Parameters
Input Type
System.string
You can pipe a string the contains a path to Add-HypMetadata (Path parameter).
Return Values
Citrix.Host.Sdk.Metadata
Add-HypMetadata returns an object containing the new definition of the metadata.
Property
Specifies the property of the metadata.
Value
Specifies the value of the metadata.
Specifies the property of the metadata.
Value
Specifies the value of the metadata.
## Notes
In the case of failure, the following errors can result.
Error Codes
-----------
InvalidPath
The path provided is not in the required format.
HostingUnitMetadataForeignKeyObjectDoesNotExist
The hosting unit supplied in the path does not exist.
HypervisorConnectionMetadataForeignKeyObjectDoesNotExist
The hypervisor connection supplied in the path does not exist.
HostingUnitMetadataDuplicateObjectExists
Metadata for the specified hosting unit item already exists with the same property name.
HypervisorConnectionMetadataDuplicateObjectExists
Metadata for the specified hypervisor connection item already exists with the same property name.
MetadataContainerUndefined
The specified path does not reference a hosting unit or a hypervisor connection.
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.
DataStoreException
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.
PermissionDenied
The user does not have administrative rights to perform this operation.
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>Add-HypMetadata -LiteralPath XDHyp:\Connections\MyConnection -Property MyProperty -Value MyValue Property Value -------- ----- MyProperty MyValue
Description
-----------
The command adds the metadata with the property name of "MyProperty" and value of "MyValue" to the hypervisor connection item called "MyConnection".
EXAMPLE 2
c:\PS>dir xdhyp\connections\Citrix* | Add-HypMetadata -Property MyProperty -Value MyValue Property Value -------- ----- MyProperty MyValue MyProperty MyValue MyProperty MyValue
Description
-----------
The command adds the metadata with the property name of "MyProperty" and value of "MyValue" to all the hypervisor connection items that begin with the string "Citrix".