summaryrefslogtreecommitdiffstats
path: root/public/tools/chkquota.cmd
blob: 555e1670e454b3bc35a114b349d30fbea9f1ff6c (plain) (blame)
1
2
3
4
5
6
7
8
9
@setlocal
@if "%1" == "" goto usage
@set _quota=10
@if NOT "%2" == "" set _quota=%2
diruse /v /m /q:%_quota% /d /l /* %1
@goto done
:usage
@echo Usage: CHKQUOTA RootPath [#MegaBytes]
:done