A practical guide to Windows disk quotas: what they control, when they are useful, how to enable them, how to set per-user limits, and how to fix common quota issues.
Disk quota is a Windows feature that limits or tracks how much space a user can consume on an NTFS volume. Instead of limiting an entire application or a specific folder, the quota is applied per user and per drive. For example, you can allow each standard user to store up to 20 GB on drive D:, while administrators or selected accounts can have a different limit.
Windows disk quotas are especially useful on shared PCs, classroom computers, office workstations, file storage drives, and systems where several local users save data to the same disk. A quota can either only track usage or actively deny additional disk space when the user reaches the configured limit.
Limits are based on file ownership, so different users can have different storage limits on the same drive.
Quotas are configured separately for each NTFS drive, such as C:, D:, or an external NTFS disk.
You can only monitor usage, or you can block users from writing more data after they exceed the limit.
Disk quotas are helpful when multiple people use the same computer or storage volume and one account should not be able to fill the entire drive. They are less useful on a single-user home PC unless you want to test storage limits, control guest accounts, or prevent a secondary user profile from consuming all free space.
Partitioning creates separate volumes, usually with different drive letters. Disk quota leaves the volume intact and only limits how much space each user account can occupy. If you want a separate D: drive, use partitioning. If you want several users to share D: but with different storage limits, use quotas.
Before enabling quotas, check the file system and understand how Windows counts usage. This prevents confusion when a user appears to have free space but still cannot save files.
| Requirement or Limit | Explanation | What to Check |
|---|---|---|
| NTFS required | The classic Windows disk quota feature works on NTFS volumes. | Drive properties should show File system: NTFS. |
| Per-volume setting | A quota enabled on D: does not automatically apply to C:. |
Configure each drive separately. |
| Per-user accounting | Usage is counted against the owner of the files, not against a folder name. | Open quota entries to see which account owns the usage. |
| Administrator rights | Changing quota settings normally requires an administrator account. | Use an admin account when opening quota settings. |
| Local feature | This guide covers built-in NTFS quotas on Windows 10 and Windows 11 PCs. | For file servers, consider server-side quota tools instead. |
The easiest way to confirm quota support is to check whether the target drive is formatted as NTFS.
D:.If the file system is NTFS, the drive can use Windows disk quotas. If it is exFAT or FAT32, the classic NTFS quota tab will not be available for that volume.
File Explorer β This PC β Right-click drive β Properties β General β File system
You can also check the file system with a command:
Command Promptfsutil fsinfo volumeinfo D:
Replace D: with the drive letter you want to check. The output should show File System Name : NTFS.
The graphical method is the safest way to configure disk quotas for most users. It lets you enable quota tracking, set a default limit, define a warning level, deny disk space after the limit is reached, and open detailed quota entries.
20 GB.18 GB, so Windows can log a warning before the hard limit is reached.The correct quota depends on the drive size, number of users, and workload. Use the table below as a starting point, not as a strict rule.
| Scenario | Default Limit | Warning Level | Notes |
|---|---|---|---|
| Guest account | 2-5 GB |
80-90% of limit |
Enough for temporary documents and downloads. |
| Student or classroom PC | 5-20 GB |
80-90% of limit |
Depends on projects, media files, and course requirements. |
| Office shared workstation | 20-50 GB |
85-90% of limit |
Useful when several employees use the same data drive. |
| Personal secondary account | 10-100 GB |
85-95% of limit |
Set a generous limit if the account stores photos, videos, or games. |
The default quota applies to users who do not already have an individual entry. If one account needs a larger or smaller limit, create a custom quota entry for that user.
Suppose the default limit for drive D: is 20 GB, but one user edits videos and needs more storage. You can create a custom entry for that account and set the limit to 100 GB while leaving the default limit unchanged for everyone else.
The quota settings window contains several options. The difference between monitoring and enforcement is especially important.
| Option | What It Does | Recommended Use |
|---|---|---|
| Enable quota management | Turns on quota tracking for the selected NTFS volume. | Enable this first to start measuring usage. |
| Deny disk space to users exceeding quota limit | Stops affected users from writing more data after they hit the limit. | Enable after testing, especially on shared PCs. |
| Do not limit disk usage | Tracks usage but does not set a default limit. | Use for monitoring only or when all limits are custom. |
| Limit disk space to | Sets the default maximum size for users without a custom entry. | Use when most users should have the same quota. |
| Set warning level to | Defines when Windows should consider the user close to the limit. | Set it below the hard limit, usually around 80-90%. |
| Log event when quota limit is exceeded | Writes an event when the user crosses the hard limit. | Enable for troubleshooting and auditing. |
| Log event when warning level is exceeded | Writes an event when the warning threshold is crossed. | Enable if you want early warning before users are blocked. |
In track mode, Windows records quota usage and can log events, but it does not stop users from saving more files. In enforce mode, Windows denies additional disk space when the configured quota limit is reached. Track mode is safer for testing; enforce mode is better for real control.
On Windows Pro, Enterprise, and Education editions, you can use Local Group Policy Editor to define quota behavior centrally for the PC. This is useful when you want consistent settings and do not want users changing quota options manually.
gpedit.msc and press Enter.Computer Configuration β Administrative Templates β System β Disk Quotas
Controls whether disk quotas can be enabled and managed on NTFS volumes.
Core settingDefines whether users are denied additional disk space after exceeding the limit.
EnforcementSets the default quota values that apply when no custom quota entry exists.
DefaultsAfter changing policy, you can force a refresh with:
Command Promptgpupdate /force
Advanced users can use fsutil quota to inspect quota configuration from an elevated Command Prompt. This is useful when you need a quick status check or when the graphical interface is not convenient.
fsutil. Some quota commands can change enforcement state, so check the drive letter carefully.
Command Promptfsutil quota query D:
Replace D: with the target drive letter. The command displays quota-related information for the selected volume.
| Command | Purpose | When to Use It |
|---|---|---|
fsutil quota query D: |
Shows quota information for the volume. | Use for checking current quota state. |
fsutil quota violations |
Displays quota violation information. | Use when users report that saving files is blocked. |
fsutil quota track D: |
Enables quota tracking on the selected volume. | Use for monitoring without blocking users. |
fsutil quota enforce D: |
Enables quota enforcement on the selected volume. | Use only after you have confirmed that limits are correct. |
fsutil quota disable D: |
Disables quota management on the selected volume. | Use when quotas cause problems or are no longer needed. |
For everyday configuration, the graphical quota settings window is easier and less error-prone. Use command-line tools mainly for checking status, troubleshooting, or administrative scripts.
After enabling quotas, monitor usage to make sure your limits are realistic. If limits are too low, users may be blocked during normal work. If limits are too high, quotas will not protect the drive from filling up.
The Quota Entries window shows users, quota limits, warning levels, and current usage. This is the most direct way to see which accounts are consuming space on the selected drive.
If you enabled event logging for warnings or exceeded limits, check Event Viewer when users report disk-space errors.
Event Viewer β Windows Logs β System
Look for disk quota warnings or related storage events around the time the user was unable to save data.
The drive may not be formatted as NTFS, or you may be looking at a location that does not expose NTFS quota settings. Check the drive properties and confirm that the file system is NTFS. Also make sure you are opening the properties of a drive volume, not only a folder shortcut.
The physical drive may still have free space, but the individual user may have reached their quota. Open Quota Entries and check that user account. Increase the limit, remove unnecessary files, or disable enforcement if the quota is not intended to block writes.
Quota usage is based on file ownership. If files were copied by an administrator, restored from backup, or moved between profiles, they may be counted against a different account than expected. Check file ownership and the quota entries list.
Check the default quota setting on the volume. Existing custom quota entries can override the default. If Group Policy is configured, policy settings may also override local choices.
Make sure the external drive uses NTFS. Many USB drives are formatted as exFAT by default, especially if they are intended to work with multiple operating systems. Windows NTFS quotas require an NTFS volume.
Run gpupdate /force, restart the PC, and confirm that you edited the correct policy path. On Windows Home, the Local Group Policy Editor is not available by default, so use the graphical drive properties method instead.
Disk quotas are simple, but poor limits can create support problems. Use a measured approach, especially on work or shared computers.
80-90% gives users time to clean up files.Disk quota in Windows is a built-in NTFS feature for controlling how much storage each user can consume on a specific drive. For most PCs, the safest setup is to enable quota management, monitor usage, set a realistic warning level, and only then enable hard enforcement if users must be prevented from exceeding the limit.
Use the graphical quota settings window for normal configuration, Group Policy for managed computers, and fsutil quota only when you need command-line checks or administrative troubleshooting.