IDiskQuotaControl::AddUserSid method (dskquota.h)
Adds a new quota entry on the volume for the specified user. The user is identified by security identifier (SID).
Syntax
HRESULT AddUserSid(
[in] PSID pUserSid,
[in] DWORD fNameResolution,
[out] PDISKQUOTA_USER *ppUser
);
Parameters
[in] pUserSid
The user's SID.
[in] fNameResolution
Indicates how the user account information is to be obtained. The volume's quota information identifies users by SID. The user account information (such as domain name, account name, and full name) must be obtained from the network domain controller, or the local computer if it is not on a network. This parameter can be one of the following values.
Value | Meaning |
---|---|
|
Resolve user account information asynchronously. AddUserSid returns immediately. The caller must implement the IDiskQuotaEvents interface to receive notification when the information is available. If the information was cached during a previous request, notification occurs as soon as the object is serviced. Otherwise, the method obtains the information from the network domain controller, then notifies IDiskQuotaEvents. |
|
Do not resolve user account information. |
|
Resolve user account information synchronously. AddUserSid returns when the information is resolved. If the information exists in the disk quota SID cache, it is returned immediately. Otherwise, the method must locate the information. This can take several seconds. |
[out] ppUser
A pointer to the IDiskQuotaUser interface pointer to the newly created quota user object.
Return value
This method returns a file system error or one of the following values.
Return code | Description |
---|---|
|
Success. |
|
The caller has insufficient access rights. |
|
The specified SDI is unknown. |
|
The DiskQuotaControl object is not initialized. |
|
The pUserSid or ppUser parameter is NULL. |
|
Insufficient memory. |
|
An unexpected file system error occurred. |
|
An unexpected exception occurred. |
Remarks
The NTFS file system automatically creates a user quota entry when a user first writes to the volume. Entries that are created automatically are assigned the default warning threshold and hard quota limit values for the volume. This method allows you to create a user quota entry before a user has written information to the volume. Therefore, you can pre-assign a warning threshold or hard quota limit value different than the volume default settings.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | dskquota.h |
DLL | Dskquota.dll |