- Existing users don't have storage quotas
- Even when users try to get their storage below the quota, the files are moved to the RECYCLER folder
- Windows Server 2003 R2 with My Documents redirected to a share
- Soft Quotas of 500 MB on user folders (no notification set)
- File Server Resource Manager Storage Reports
- DU.exe (SysInternals Tool for reporting folder sizes)
- Excel 2007
- Run a storage report for users that used 100% of quota
- Copy that information into a new sheet in Excel
- Run DU.exe on the root of the user folders (this will show every folder, even if hidden)
- Copy that information into a new sheet in Excel
- Create a new sheet to merge the data for analysis
- On the sheet with the DU output:
- Create a new column and use =Find("RECYCLER", A1). Copy this formula to every row that has an entry. This will show the position number for any entry that contains the word "RECYCLER". (This is column B)
- Create a new column and use =LEFT(A1,FIND("\RECYCLER",A1)). Copy this formula to every row that has an entry. This will return all the contents of the row up to "\RECYCLER". An Example would be "2,316,645 D:\Users$\Agents\John.Doe\". (This is column C)
- Create a new column and use =LEFT(E22,LEN(E22)-1). Copy this formula to every row that has an entry. This will Parse the username from the folder path. In the above example it would be "John.Doe". (This is column D)
- Create a final column to parse the size of the folder. =LEFT(C22,FIND("D:\",C22)-1) will return "2,316,645". Copy this formula to all rows that contain data. (This is column E)
- Now put a filter on the columns to filter out the following:
- Column B - Only rows with a value greater than 0 (zero). These are only the rows that have "RECYCLER" in the folder path.
- Column D - Only rows with a username
- Column E - Only rows with a value greater than 0 (zero)
- On the sheet with the results of the Storage Report:
- Hide all columns with data with the exception of column A - this will leave only the user folder path
- Hide all rows that do not contain the folder path (this is just for the ease of reading)
- In column G, enter =MID(A2,18,25) to parse the username from the path. Copy this formula to every row that has an entry.
The way the data is interpreted:
- Users that have a RECYCLER and are over their quota need to have the RECYCLER folder emptied. This is a quick way to help the user get below their quota without having to go through all of their files.
- Users that do not have a RECYCLER folder, but are over their quota will have to begin removing files from their folder to get under the limit
- On the storage report data sheet, unhide all columns
- In the row with the user name, enter =LEFT(C3,FIND("MB",C3)-1), Copy this formula to every row that has an entry. NOTE: the row used in this formula is not the same row as the user's name, it is one row below due to the format of the storage report.
- On the analysis sheet, create a new column and perform another VLookup against the username with the following: =VLOOKUP(A2,'Over Quota'!G2:H84,2,FALSE), Copy this formula to every row that has an entry.This will copy the storage usage for each of the users.
NOTE: There is a way to turn this feature off by using Group Policy to 'disable moving files to the Recycle Bin'. This policy is applied to the user and also disables the Recycle Bin on the user's workstation.