Managed Object - GuestWindowsRegistryManager(vim.vm.guest.WindowsRegistryManager)

Property of
GuestOperationsManager
See also
GuestAuthentication, GuestRegKeyNameSpec, GuestRegKeyRecordSpec, GuestRegValueNameSpec, GuestRegValueSpec, VirtualMachine
Since
vSphere API 6.0


Managed Object Description

WindowsRegistryManager is the managed object that provides APIs to manipulate the Registry in a Windows guest OS.

Properties

Name Type Description
None

Methods

Methods defined in this Managed Object
CreateRegistryKeyInGuest, DeleteRegistryKeyInGuest, DeleteRegistryValueInGuest, ListRegistryKeysInGuest, ListRegistryValuesInGuest, SetRegistryValueInGuest

CreateRegistryKeyInGuest(createRegistryKey)

Create a registry key.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
keyNameGuestRegKeyNameSpec

The path to the registry key to be created.
isVolatilexsd:boolean

If true, the key is created in memory and is not preserved across system reboot. Otherwise, it shall persist in the file system.
classType*xsd:string

User defined class type for this key. May be omitted.
*Need not be set P Required privilege: VirtualMachine.GuestOperations.Modify

Return Value

Type Description
None

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyAlreadyExistsThrown if the registry key already exists.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
GuestRegistryKeyParentVolatileThrown if trying to create a non-volatile registry subkey under a volatile registry parent key.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition



DeleteRegistryKeyInGuest(deleteRegistryKey)

Delete a registry key.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
keyNameGuestRegKeyNameSpec

The path to the registry key to be deleted.
recursivexsd:boolean

If true, the key is deleted along with any subkeys (if present). Otherwise, it shall only delete the key if it has no subkeys.
P Required privilege: VirtualMachine.GuestOperations.Modify

Return Value

Type Description
None

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyHasSubkeysThrown if the parameter recursive is false and the key has subkeys.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition



DeleteRegistryValueInGuest(deleteRegistryValue)

Delete a registry value.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
valueNameGuestRegValueNameSpec

The registry value name to be deleted. The Value "name" (specified in GuestRegValueNameSpec) can be empty. If "name" is empty, it deletes the value for the unnamed or default value of the given key.
P Required privilege: VirtualMachine.GuestOperations.Modify

Return Value

Type Description
None

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
GuestRegistryValueNotFoundThrown if the registry value was not found.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition



ListRegistryKeysInGuest(listRegistryKeys)

List all registry subkeys for a given registry key.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
keyNameGuestRegKeyNameSpec

The path to the registry key for which all subkeys are to be listed.
recursivexsd:boolean

If true, all subkeys are listed recursively.
matchPattern*xsd:string

A filter for the key names returned, specified using perl-compatible regular expressions. If matchPattern is unset, then the pattern '.*' is used, which returns all key names found, otherwise only those key names that match the input pattern shall be returned.
*Need not be set P Required privilege: VirtualMachine.GuestOperations.Query

Return Value

Type Description
GuestRegKeyRecordSpec[]The list of subkeys is returned in an array of GuestRegKeySpec structures.

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition



ListRegistryValuesInGuest(listRegistryValues)

List all registry values for a given registry key.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
keyNameGuestRegKeyNameSpec

The path to the registry key for which all values are to be listed.
expandStringsxsd:boolean

If true, all values that have expandable data such as environment variable names, shall get expanded in the result.
matchPattern*xsd:string

A filter for the value names returned, specified using perl-compatible regular expressions. If matchPattern is unset, then the pattern '.*' is used, which returns all value names found, otherwise only those value names that match the input pattern shall be returned.
*Need not be set P Required privilege: VirtualMachine.GuestOperations.Query

Return Value

Type Description
GuestRegValueSpec[]The list of values is returned in an array of GuestRegValueSpec structures.

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition



SetRegistryValueInGuest(setRegistryValue)

Set/Create a registry value.
Required Privileges
None

Parameters

NameTypeDescription
_thisManagedObjectReference A reference to the GuestWindowsRegistryManager used to make the method call.
vm PManagedObjectReference
to a VirtualMachine

Virtual machine to perform the operation on.
authGuestAuthentication

The guest authentication data.
valueGuestRegValueSpec

The information for the registry value to be set/created. The Value "name" (specified in GuestRegValueNameSpec) and the Value "data" (specified in GuestRegValueSpec) can both be empty. If "name" is empty, it sets the value for the unnamed or default value of the given key.
P Required privilege: VirtualMachine.GuestOperations.Modify

Return Value

Type Description
None

Faults

Type Description
GuestComponentsOutOfDateThrown if the guest agent is too old to support the operation.
GuestOperationsFaultThrown if there is an error processing a guest operation.
GuestOperationsUnavailableThrown if the VM agent for guest operations is not running.
GuestPermissionDeniedThrown if the program path cannot be run because the guest authentication will not allow the operation.
GuestRegistryKeyInvalidThrown if the registry key is not valid. Check the HKEY Root specified.
InvalidGuestLoginThrown if the the guest authentication information was not accepted.
InvalidPowerStateThrown if the VM is not powered on.
InvalidStateThrown if the operation cannot be performed because of the virtual machine's current state.
OperationDisabledByGuestThrown if the operation is not enabled due to guest agent configuration.
OperationNotSupportedByGuestThrown if the operation is not supported by the guest OS.
RuntimeFaultThrown if any type of runtime fault is thrown that is not covered by the other faults; for example, a communication error.
TaskInProgressThrown if the virtual machine is busy.

Events

Type
None

Show WSDL type definition