Hello Smith,
The behavior you’re describing usually points to corruption or inconsistency in the FSRM quota database, or the service failing to properly commit auto-expansion events. When quotas stop auto-expanding, the first thing to confirm is that the FSRM service (srmsvc) is running cleanly and that the quota management database is intact. The database is stored under %SystemRoot%\System32\srms\quota.mdb. If this file becomes corrupted, quotas may stop responding to triggers.
The safest recovery path is to export your current quota configuration, reset the quota database, and then re-import the configuration. Use dirquota to handle this. Run:
dirquota template export /file:C:\temp\QuotaTemplates.xml
dirquota quota export /file:C:\temp\QuotaObjects.xml
This ensures you have a backup of all templates and applied quotas. Once exported, stop the FSRM service:
net stop srmsvc
Then rename or move the quota database:
ren %SystemRoot%\System32\srms\quota.mdb quota.mdb.old
Restart the service:
net start srmsvc
This forces FSRM to rebuild a fresh quota database. Finally, re-import your saved configuration:
dirquota template import /file:C:\temp\QuotaTemplates.xml
dirquota quota import /file:C:\temp\QuotaObjects.xml
After this, verify that auto-expanding quotas are functioning again. If the issue persists, check the Event Viewer under Applications and Services Logs > File Server Resource Manager for warnings or errors around quota expansion. In some cases, the problem can be tied to insufficient permissions on the target folders or a mismatch between NTFS volume state and FSRM’s internal counters. Running chkdsk on the affected volume can help rule out filesystem inconsistencies.
If you’re running a clustered file server, ensure that the FSRM role is properly synchronized across nodes, as quota expansion events can fail if the database is not consistent cluster-wide. Microsoft has documented cases where quota corruption requires a full reset as described above, and that’s generally considered the supported method to recover without losing configuration.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
HL.