Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Disk Quota Settings on the Local ComputerContent of List Disk Quota Settings on the Local Computer.vbsMD5 Hash: 161217767CDC4F09F2752DE922D77272 |
||
' Description: Enumerates the disk quota settings for drive C on the local computer. To enumerate disk quota settings for a different drive, change C:\ in line two to the appropriate drive letter (for example, D:\).
Set colDiskQuotas = CreateObject("Microsoft.DiskQuota.1") colDiskQuotas.Initialize "C:\", True If colDiskQuotas.QuotaState = 2 Then Wscript.Echo "Quota state: Enabled and enforced" ElseIf colDiskQuotas.QuotaState = 1 Then Wscript.Echo "Quota state: Enabled but not enforced" Else Wscript.Echo "Quota state: Disabled" End If Wscript.Echo "Default quota limit: " & colDiskQuotas.DefaultQuotaLimit Wscript.Echo "Default warning limit: " & _ colDiskQuotas.DefaultQuotaThreshold Wscript.Echo "Record quota violations in event log: " & _ colDiskQuotas.LogQuotaLimit Wscript.Echo "Record warnings in event log: " & _ colDiskQuotas.LogQuotaThreshold | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |