IVMVirtualMachine::GetConfigurationValue method
The GetConfigurationValue method returns the value of the specified configuration setting for this virtual machine.
Syntax
HRESULT GetConfigurationValue(
[in] BSTR configurationKey,
[out] VARIANT *configurationValue
);
Parameters
-
configurationKey [in]
-
Key used to identify the configuration value as stored in the "*.vmc" file.
-
configurationValue [out]
-
The configuration value. Variant type may be one of: VT_ARRAY|VT_UI1 (raw bytes), VT_BSTR (string), VT_UI4 (integer), or VT_BOOL (Boolean).
Return value
This method supports standard return values, as well as the following. For information on Virtual Server specific return values not listed below, see HRESULT Codes Specific to the Virtual Server.
Return code | Description |
---|---|
|
The operation was successful. |
|
The configurationKey parameter is NULL or empty. |
|
The configurationValue parameter is NULL. |
|
The configuration is unknown. |
|
The preference was not found. |
|
An unexpected error has occurred. |
Remarks
This method provides low-level access to any configuration value. It can be used to read configuration values for customer-defined keys.
Configuration keys are located in the virtual machine's "*.vmc" file in XML format. The keys are stored in a hierarchical manner similar to the registry keys in Windows. To specify a specific subkey, a "key path" is constructed which specifies the various keys in a slash mark delimited format.
For example, to read the value of the "ram_size" key located in the following key tree:
<hardware>
<memory>
<ram_size type="integer">128</ram_size>
The configurationKey path string would be specified as follows:
"hardware/memory/ram_size"
If any of the keys in the desired tree have an "id" attribute value, the attribute and its value is embedded in the configurationKey path string immediately after its associated configuration key using the following bracketed format: "[@id="id_value"]".
For example, to read the value of the "absolute" key located in the following key tree:
<hardware>
<pci_bus>
<ide_adapter>
<ide_controller id="1">
<location id="0">
<pathname>
<absolute type="string">D</absolute>
The configurationKey path string would be specified as follows:
"hardware/pci_bus/ide_adapter/ide_controller[@id=1]/location[@id=0]/pathname/absolute"
Requirements
Product |
Microsoft Virtual Server 2005 onWindows Server 2003 |
Download |
Microsoft Virtual Server 2005 R2 SP1 Update onWindows Server 2008orWindows Server 2003 |
Header |
|