Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Delete an Existing Quota EntryContent of Delete an Existing Quota Entry.vbsMD5 Hash: 2D92ACB0526D9C30B071E08BED3E93AE |
||
' Description: Deletes a disk quota entry for the user fabrikam\bob.
strDrive = "C:" strDomain = "fabrikam" strUser = "bob" strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set objQuota = objWMIService.Get _ ("Win32_DiskQuota.QuotaVolume='Win32_LogicalDisk.DeviceID=""" " & _ " & strDrive & """',User='Win32_Account.Domain=""" " & _ " & strDomain & """,Name=""" & strUser & """'") objQuota.Delete_ | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |