Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Disk quotas are an essential feature for managing and controlling disk space usage on Windows servers and workstations. By enabling disk quotas, administrators can set limits on the amount of disk space that users can consume, helping to prevent a single user from monopolizing disk resources and ensuring fair distribution of storage. This article will guide you through the process of enabling and configuring disk quotas in a Windows environment using both the graphical user interface (GUI) and command-line tools like PowerShell.
Examples:
Open File Explorer:
Win + E
to open File Explorer.Select the Drive:
Properties
.Access Quota Settings:
Quota
tab and click on Show Quota Settings
.Enable Quota Management:
Enable quota management
.Set Quota Limits:
Limit disk space to
and specifying the desired limit. You can also set a warning level to alert users when they are nearing their quota limit.Apply Settings:
Apply
and then OK
to save the settings.Open PowerShell as Administrator:
Win + X
and select Windows PowerShell (Admin)
.Enable Quota Management:
fsutil quota enforce C:
Set Quota Limit and Warning Level:
fsutil quota modify C: 104857600 52428800 <UserSID>
Replace <UserSID>
with the Security Identifier (SID) of the user. The values 104857600
and 52428800
represent the quota limit and warning level in bytes, respectively.
Verify Quota Settings:
fsutil quota query C:
Open Command Prompt as Administrator:
Win + X
and select Command Prompt (Admin)
.Enable Quota Management:
fsutil quota enforce C:
Set Quota Limit and Warning Level:
fsutil quota modify C: 104857600 52428800 <UserSID>
Replace <UserSID>
with the Security Identifier (SID) of the user. The values 104857600
and 52428800
represent the quota limit and warning level in bytes, respectively.
Verify Quota Settings:
fsutil quota query C: