![]() Loading |
| VBScript |
| JavaScript |
| Powershell |
Search Options: List Disk Space by User Using Disk Quotas
|
||
|
' Description: Uses disk quotas to report the amount of disk space being used by each individual user on a computer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colQuotas = objWMIService.ExecQuery("Select * from Win32_DiskQuota") For Each objQuota in colQuotas Wscript.Echo "Volume: "& objQuota.QuotaVolume Wscript.Echo "User: "& objQuota.User Wscript.Echo "Disk Space Used: "& objQuota.DiskSpaceUsed Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: | ||