Dirquota quota modify
Applies To: Windows Server 2008, Windows Server 2012
Modifies an existing quota.
Note
To use this command, you must be logged on as an administrator or a member of the Administrators group.
For examples of how to use this command, see Examples.
Syntax
dirquota quota modify /path:<Path> [/sourcetemplate:<TemplateName>]
[/limit:<Limit>[kb | mb | gb]] [/type:{hard | soft}]
[/status:{enabled | disabled}] [/reset-peakusage]
[/add-threshold:<Level>] [...] [/delete-threshold:<Level>] [...]
[/modify-threshold:<OldLevel>,<NewLevel>] [...]
[/add-notification:<Level>,<NotifyType>,<ConfigFile>] [...]
[/delete-notification:<Level>,<NotifyType>] [...]
[/modify-notification:<Level>,<NotifyType>,<ConfigFile>] [...]
[/remote:<ComputerName>]
Parameters
Parameter |
Description |
||
---|---|---|---|
/path:<Path> |
Modifies a quota configured on path Path. You can append the following wildcard characters:
|
||
/sourcetemplate:<TemplateName> |
Derives quota properties from the quota template TemplateName. If the template name contains a space, enclose the name in quotation marks. |
||
/limit:<Limit>[kb | mb | gb] |
Modifies the space limit for the volume or folder. By default, Limit is denoted in kilobytes (KB), but you can append kb, mb, or gb to the number to specify the unit. |
||
/type:{hard | soft} |
Modifies the quota type:
|
||
/status:{enabled | disabled} |
Enables or disables a quota. A disabled quota will not be enforced. |
||
/reset-peakusage |
Resets the peak usage value for the quota on the specified path. The new peak usage value will be the current quota usage value. |
||
/add-threshold:<Level> [...] |
Adds a notification threshold at percentage Level. You can use this parameter multiple times. |
||
/delete-threshold:<Level> [...] |
Deletes a notification threshold and all notifications that were configured at percentage Level. The Level value must be the percentage of a configured notification threshold. You can use this parameter multiple times. |
||
/modify-threshold:<OldLevel>,<NewLevel> |
Changes the percentage level of a configured notification threshold. All notifications that were configured at OldLevel will be available at NewLevel. The OldLevel value must be the percentage level of an existing notification threshold. The NewLevel value must be a percentage level not currently assigned to a notification threshold. You can use this parameter multiple times. |
||
/add-notification:<Level>,<NotifyType>,<ConfigFile> |
Adds a notification to the notification threshold at percentage Level, of type NotifyType, configured according to the information in the configuration file ConfigFile. You can use this parameter multiple times. Level must be the percentage of a configured notification threshold. NotifyType must be one of the following:
ConfigFile is the path to the configuration file for the notification. For more information, see Configuration files for notifications in File Server Resource Manager.
|
||
/delete-notification:<Level>,<NotifyType> [...] |
Deletes a notification configured for the notification threshold at percentage Level, of type NotifyType. (For information about NotifyType, see the description of the /add-notification: parameter.) You can use this parameter multiple times. |
||
/modify-notification:<Level>,<NotifyType>,<ConfigFile> [...] |
Modifies a notification configured for the notification threshold at percentage Level, of type NotifyType, to be configured according to the information in the configuration file ConfigFile. (For information about NotifyType and ConfigFile, see the description of the /add-notification: parameter.) You can use this parameter multiple times. |
||
/remote:<ComputerName> |
Performs the operation on the remote computer ComputerName. |
Remarks
Quota properties that are not modified by using command parameters remain unchanged.
The **/sourcetemplate:**TemplateName parameter derives the following properties from the quota template TemplateName:
Space limit
Quota type (hard or soft)
Notification thresholds and notifications (if configured)
You can override the space limit and quota type values of the quota template by using the /limit: and /type: parameters.
To modify the derived thresholds and notifications, use the /modify-threshold: and /modify-notification: parameters.
To create and manage quota templates, use the Dirquota template command.
The shortest sequence of characters that uniquely identifies a parameter can be used as an abbreviation. For example, the following two commands are equivalent:
dirquota q m /p:d:\scratch /st:disabled dirquota quota modify /path:d:\scratch /status:disabled
To perform operations on a remote computer by using the **/remote:**ComputerName parameter:
You must be logged on with a domain account that is a member of the Administrators group on both the local computer and the remote computer.
The remote computer must be running Windows Server 2008, and File Server Resource Manager must be installed.
The Remote File Server Resource Manager Management exception on the remote computer must be enabled. You enable this exception by using Windows Firewall in Control Panel.
Examples
To disable a quota in the D:\scratch folder and reset the quota peak usage, type:
dirquota quota modify /path:d:\scratch /status:disabled /reset-peakusage
To modify the quota threshold and all configured notifications at that threshold, from 80 percent to 70 percent in all subfolders of D:\users, type:
dirquota quota modify /path:d:\users\* /modify-threshold:80,70