FSRM: Reset Quota

less than 1 minute read

Description:

A user will say that FSRM is saying their drive is full when it’s actually not.

To Resolve:

  1. Open ADUC, go to the user, go to Profile tab, and check the “Connect To” address.

  2. RDP to that file servers and open up FSRM Management.

  3. Uncheck “Enable Quota” for that path and then wait and recheck it.

  4. I’ve also had luck running (in Admin CMD):

    1
    2
    
    dirquota quota scan /path:c:\blah\folder
    # path updated successfully
    
  5. To see violations:

    1
    2
    3
    4
    
    fsutil quota violations
    
    # Server 2012r2+:
    Get-FsrmQuota -Path "C:\Share01\..."
    

Comments