DiskReload

If this property has a nonzero value, during the online operation, the Physical Disk resource will reload the volume level information from the disk (for example, driveletters, volume guids), instead of applying the volume information from the DiskVolumeInfo property. The following table summarizes the attributes of the DiskReload property.

Attribute Value
Data type DWORD
Access Read/write
Status Optional
Structure CLUSPROP_DWORD
Minimum FALSE (0)
Maximum TRUE (1)
Default FALSE (0)

Examples

The property value portion of a property list entry for DiskReload can be set with the following example code.

DWORD          DiskReloadData = 1;
CLUSPROP_DWORD DiskReloadValue;

DiskReloadValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
DiskReloadValue.cbLength  = sizeof(DWORD);
DiskReloadValue.dw        = DiskReloadData;

Requirements

Minimum supported client
None supported
Minimum supported server
Windows Server 2008 Datacenter, Windows Server 2008 Enterprise

See also

Physical Disk Private Properties

CLUSPROP_DWORD