How to Configure File Server Resource Manager Quotas
Applies to: Windows Server 2019, 2022 and 2025.
FSRM quotas limit or monitor folder consumption. Soft quotas generate alerts; hard quotas block growth when the threshold is reached.
Storage changes can cause data loss or access outages. Use tested backups, maintenance windows and representative access tests. Managed Windows VPS services are available at networkmanager.info.
Prerequisites
- Install FSRM.
- Choose monitored paths and thresholds.
- Configure email or event actions.
- Measure existing usage before a hard quota.
Procedure
Step 1: Install FSRM
Add the role and tools.
Install-WindowsFeature FS-Resource-Manager -IncludeManagementToolsStep 2: Review existing quotas
List configuration.
Get-FsrmQuotaStep 3: Create a soft quota
Monitor a 100 GB threshold without blocking writes.
New-FsrmQuota -Path 'D:\Shares\Finance' -Size 100GB -SoftLimitStep 4: Add notification actions
Use FSRM templates or management console to configure approved warning thresholds.
Step 5: Monitor usage
Review used and remaining space.
Verification
Confirm quota type, size and usage.
Get-FsrmQuota -Path 'D:\Shares\Finance' | Format-List Path,Size,Usage,SoftLimitRollback and recovery
Remove-FsrmQuota for the specific path or restore the previous size and notification actions.
Operational notes
A hard quota can interrupt applications; introduce it only after usage analysis and stakeholder notification.