MaxUsers

Describes the number of simultaneous users that can access the Distributed File System resource. The following table summarizes the attributes of the MaxUsers property.

Attribute Value
Data type DWORD
Access Read/write
Status Optional
Structure CLUSPROP_DWORD
Minimum 0
Maximum 0xFFFFFFFF
Default 0xFFFFFFFF

Examples

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

DWORD          MaxUsersData = 10;
CLUSPROP_DWORD MaxUsersValue;

MaxUsersValue.Syntax.dw = CLUSPROP_SYNTAX_LIST_VALUE_DWORD;
MaxUsersValue.cbLength  = sizeof(DWORD);
MaxUsersValue.dw        = MaxUsersData;

Requirements

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

See also

Distributed File System Private Properties

CLUSPROP_DWORD