What options are available for Shell32.Folder.GetDetailsOf(..,..)?

I figured this out by accident. If you pass null into GetDetailsOf then it responds with the column names. For example, execute the following JScript with cscript: var shellapp = WScript.CreateObject(“Shell.Application”); var folder = shellapp.NameSpace(“D:\\”); for (var j = 0; j < 0xFFFF; j++) { detail = folder.GetDetailsOf(null, j); if (!detail) { break; } WScript.Echo(“[” … Read more