Guest Windows Registry Manager Create Registry Key In Guest

Guest Windows Registry Manager Create Registry Key In Guest

Create a registry key.

Request
URI
POST
https://{api_host}/sdk/vim25/{release}/GuestWindowsRegistryManager/{moId}/CreateRegistryKeyInGuest
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the method attaches; the serialized managed object reference for a request has the form moType/moId, in this case GuestWindowsRegistryManager/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 9.0.0.0 APIs.


Request Body
CreateRegistryKeyInGuestRequestType of type(s) application/json
Required
"CreateRegistryKeyInGuestRequestType Object"
vm
Required

Virtual machine to perform the operation on.

Required privileges: VirtualMachine.GuestOperations.Modify

auth
Required

The guest authentication data.

keyName
Required

The path to the registry key to be created.

boolean
isVolatile
Required

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

string
classType
Optional

User defined class type for this key. May be omitted.

Authentication
This operation uses the following authentication methods.
Responses
204

No Content

Operation doesn't return any data structure

500

GuestOperationsFault: if there is an error processing a guest operation.

GuestOperationsUnavailable: if the VM agent for guest operations is not running.

InvalidPowerState: if the VM is not powered on.

InvalidState: if the operation cannot be performed because of the virtual machine's current state.

TaskInProgress: if the virtual machine is busy.

GuestRegistryKeyInvalid: if the registry key is not valid. Check the HKEY Root specified.

GuestRegistryKeyAlreadyExists: if the registry key already exists.

GuestRegistryKeyParentVolatile: if trying to create a non-volatile registry subkey under a volatile registry parent key.

GuestPermissionDenied: if the program path cannot be run because the guest authentication will not allow the operation.

InvalidGuestLogin: if the the guest authentication information was not accepted.

GuestComponentsOutOfDate: if the guest agent is too old to support the operation.

OperationNotSupportedByGuest: if the operation is not supported by the guest OS.

OperationDisabledByGuest: if the operation is not enabled due to guest agent configuration.

Returns VimFault of type(s) application/json
This response body class contains all of the following: InlineVimFault0
"VimFault Object"

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '[{}]' https://{api_host}/sdk/vim25/{release}/GuestWindowsRegistryManager/{moId}/CreateRegistryKeyInGuest