IVMVirtualServer::CreateDynamicVirtualHardDisk method

The CreateDynamicVirtualHardDisk method creates a dynamically resizing virtual hard disk.

Syntax

HRESULT CreateDynamicVirtualHardDisk(
  [in]  BSTR    imagePath,
  [in]  long    size,
  [out] IVMTask **diskTask
);

Parameters

imagePath [in]

The full path to the new disk image file. The containing folder will be created if it does not exist.

size [in]

Size, in megabytes, of the image. Can be at most 2,088,960 MB (2040 GB).

diskTask [out]

Retrieves the task which is used to track the creation of the image.

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
S_OK
The operation was successful.
E_POINTER
The imagePath or diskTask parameter is NULL.
E_INVALIDARG
The size parameter is less than or equal to 0.
E_PATH_NOT_FOUND
The system cannot find the path specified by the imagePath parameter.
E_INVALID_NAME
The imagePath parameter contains an invalid character (one of "*?:<>/|"").
E_BAD_PATHNAME
The imagePath parameter specifies an empty or relative path. An absolute path is required.
E_BUFFER_OVERFLOW
The path specified by the imagePath parameter is too long. The length of the path must be less than 260 characters.
E_ALREADY_EXISTS
The file referenced by the parameter imagePath already exists.
E_DISK_FULL
The dynamically expanding virtual hard disk image needs at least 8 MB free on the host volume.
VM_E_IMAGE_SIZE_TOO_LARGE
The parameter size must be less than 2,088,960 MB. If format is "vmDiskFormat_FAT16", then size must be less than 2000 MB.
VM_E_IMAGE_SIZE_TOO_SMALL
Unformatted and FAT16 formatted virtual hard disk images must be at least 3 MB. FAT32 formatted virtual hard disk images must be at least 514 MB.
VM_E_FILE_TOO_LARGE_FOR_VOLUME
The host volume cannot support a file this size if the dynamically expanding virtual hard disk image expands to its full limit. The maximum file size for a FAT32 volume is 4 GB.
VM_E_APP_SHUTTING_DOWN
The virtual hard disk cannot be created after the application has started shutting down.
DISP_E_EXCEPTION
An unexpected error occurred.

Requirements

Product
Microsoft Virtual Server 2005 onWindows Server 2003
Download
Microsoft Virtual Server 2005 R2 SP1 Update onWindows Server 2008orWindows Server 2003
Header
VsComInterfaces.h

See also

IVMVirtualServer