Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List a Specific Set of FilesContent of List a Specific Set of Files.vbsMD5 Hash: B3CB846C607140D3B8FED30E9C65051C |
||
' Description: Returns a list of all the files larger than 1,000,000 bytes.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colFiles = objWMIService. _ ExecQuery("Select * from CIM_DataFile where FileSize > 1000000") For Each objFile in colFiles Wscript.Echo objFile.Name & " -- " & objFile.FileSize Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |