Hello,
With 2 node windows 2019 cluster, i want to manage the user disk quotas. My understanding is that with FSRM, we can do only capacity quota enforcement and not user/group quotas. Hence i explored the disk quota enabled using fsutil for user/group quota.
For the local user i have set the hardlimit as 2MB and wrote data more than 2MB, it didnt complain that user has reached the limit and i could write to the drive without any issues. What am i missing here.
fsutil quota modify H: 1048576 2097152 \Administrator
fsutil quota enforce H:
PS h:\> fsutil quota query H:
FileSystemControlFlags = 0x00000001
Quotas are tracked on this volume
Logging for quota events is not enabled
The quota values are up to date
Default Quota Threshold = 0xffffffffffffffff
Default Quota Limit = 0xffffffffffffffff
SID Name = BUILTIN\Administrators (Alias)
Change time = Thursday, June 3, 2021 12:23:46 PM
Quota Used = 17375232
Quota Threshold = 18446744073709551615
Quota Limit = 18446744073709551615
SID Name = WIN-EST2RNNNHJO\Administrator (User)
Change time = Thursday, June 3, 2021 12:22:25 PM
Quota Used = 0
Quota Threshold = 1048576
Quota Limit = 2097152
SID Name = NT AUTHORITY\NETWORK SERVICE (WellKnownGroup)
Change time = Thursday, June 3, 2021 12:21:47 PM
Quota Used = 1024
Quota Threshold = 18446744073709551615
Quota Limit = 18446744073709551615
SID Name = NT AUTHORITY\SYSTEM (WellKnownGroup)
Change time = Thursday, June 3, 2021 12:21:47 PM
Quota Used = 6293504
Quota Threshold = 18446744073709551615
Quota Limit = 18446744073709551615
I have couple of questions
- Can we use FSRM for user/group quota?
- If not, fsutil is the only way to achieve user/group quota?
- In a clustered environment, can i use fsutil to do the user quota enforcement.
Thanks!