π ~1 min read
Table of contents
Symptom & Impact
Storage quota warnings are not sent, leading to unexpected capacity exhaustion and service interruptions.
Environment & Reproduction
Windows Server 2019 file server with FSRM quotas and SMTP/task actions configured.
Get-FsrmQuota
Get-FsrmAction
Root Cause Analysis
FSRM actions are disabled, SMTP settings are invalid, or scheduled task runner account permissions changed.
Quick Triage
Check FSRM service state and recent operational events.
Get-Service srmsvc
Get-WinEvent -LogName Application -MaxEvents 60 | Where-Object ProviderName -match 'SRMSVC|FSRM'
Step-by-Step Diagnosis
Validate quota template thresholds, notification actions, and outbound mail relay access.
Get-FsrmQuotaTemplate
Test-NetConnection smtp.contoso.local -Port 25

Solution β Primary Fix
Repair FSRM action bindings and SMTP settings, then restart FSRM service.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Set-FsrmSetting -SmtpServer smtp.contoso.local -FromEmailAddress [email protected]
Restart-Service srmsvc

Solution β Alternative Approaches
Use Event Log and scheduled script alerts if SMTP delivery is blocked by policy.
New-ScheduledTaskAction -Execute 'PowerShell.exe' -Argument '-File C:Scriptsquota-alert.ps1'
Verification & Acceptance Criteria
Test quota threshold triggers configured alert actions within expected delay window.
Get-FsrmQuota | Select Path,Usage,Size
Rollback Plan
Restore previous quota template export if changes alter retention behavior.
dirquota template export /file:C:Tempfsrm-templates.xml
Prevention & Hardening
Review quota alerts monthly and validate SMTP relay and service account permissions.
Get-FsrmQuotaTemplate | Select Name,Description
Related Errors & Cross-Refs
Can coincide with SMTP relay rejection and task scheduler credential expiration.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn: FSRM quota management and alerting design.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.