Affected versions: Windows Server 2019

πŸ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution β€” Primary Fix
  7. Solution β€” Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

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
Illustrative mockup for windows-server-2019 β€” terminal_or_powershell
FSRM quota and action checks β€” Illustrative mockup β€” Progressive Robot

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
Illustrative mockup for windows-server-2019 β€” event_or_log_viewer
FSRM events and task history β€” Illustrative mockup β€” Progressive Robot

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

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.