IVdsDiskPartitionMF2::FormatPartitionEx2 method (vds.h)
[Beginning with Windows 8 and Windows Server 2012, the Virtual Disk Service COM interface is superseded by the Windows Storage Management API.]
Formats an existing OEM, ESP, or unknown partition. This method is identical to the IVdsDiskPartitionMF::FormatPartition method, except that formatting options are specified by using the Options parameter.
Syntax
HRESULT FormatPartitionEx2(
[in] ULONGLONG ullOffset,
[in] LPWSTR pwszFileSystemTypeName,
[in] USHORT usFileSystemRevision,
[in] ULONG ulDesiredUnitAllocationSize,
[in] LPWSTR pwszLabel,
[in] DWORD Options,
[out] IVdsAsync **ppAsync
);
Parameters
[in] ullOffset
The byte offset of the partition from the beginning of the disk. This offset must be the offset of the start of a partition.
[in] pwszFileSystemTypeName
A NULL-terminated Unicode string containing the name of the file system with which to format the partition. Must be NULL or one of the following: "NTFS", "FAT","FAT32", "UDF", or "EXFAT". If this parameter is NULL, a default value is used. For more information, see VDS_FILE_SYSTEM_FORMAT_SUPPORT_FLAG.
[in] usFileSystemRevision
The revision of the file system, if any. This member is expressed as a 16-bit binary-coded decimal number, where a decimal point is implied between the second and third digits. For example, a value of 0x0250 indicates revision 2.50.
[in] ulDesiredUnitAllocationSize
The size of the allocation unit for the file system, in bytes. The value must be a power of 2. If the value is 0, a default allocation unit determined by the file system type will be used. The allocation unit range is file system dependent.
[in] pwszLabel
A NULL-terminated Unicode string containing the label to assign to the new file system for the partition. The maximum label size is file system dependent.
[in] Options
A bitmask of VDS_FORMAT_OPTION_FLAGS enumeration values that specify formatting options.
[out] ppAsync
A pointer to an IVdsAsync interface that upon successful completion receives the IVdsAsync interface to monitor and control this operation. Callers must release the interface received when they are done with it.
Return value
This method can return standard HRESULT values, such as E_INVALIDARG or E_OUTOFMEMORY, and VDS-specific return values. It can also return converted system error codes using the HRESULT_FROM_WIN32 macro. Errors can originate from VDS itself or from the underlying VDS provider that is being used. Possible return values include the following.
Return code/value | Description |
---|---|
|
The volume was partitioned successfully. |
|
A provider returned bad data. |
|
The operation is not supported on removable media. |
|
The default file system could not be determined. |
|
The disk is missing. |
|
The partition does not exist. |
|
The operation is not supported on non-OEM partitions. |
In addition, the IVdsAsync interface can return the following related warnings and error codes.
Return code/value | Description |
---|---|
|
The file system is formatted but not compressed. |
|
Access is denied. |
|
The label is not valid. |
|
The volume cannot be quick-formatted. |
|
The number of clusters is too large to be represented as a 32-bit integer. |
|
The cluster size is too large to allow formatting. |
|
The cluster size is too small to allow formatting. |
|
The file system is incompatible. |
|
The media is incompatible. |
|
An I/O error occurred during format. |
|
The media is write-protected. |
|
The volume size is too large to format. |
|
The volume size is too small to format. |
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7 [desktop apps only] |
Minimum supported server | Windows Server 2008 R2 [desktop apps only] |
Target Platform | Windows |
Header | vds.h |