Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Retrieving Extended File PropertiesContent of Retrieving Extended File Properties.vbsMD5 Hash: 769F9E724396A500631C06AD7CD4E60F |
||
' Description: Uses the Shell object to return extended properties for all the files in the folder C:\Scripts.
Dim arrHeaders(34) Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace("C:\Scripts") For i = 0 to 33 arrHeaders(i) = objFolder.GetDetailsOf(objFolder.Items, i) Next For Each strFileName in objFolder.Items For i = 0 to 33 Wscript.Echo i & vbtab & arrHeaders(i) _ & ": " & objFolder.GetDetailsOf(strFileName, i) Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |