Hi I have this script which I slightly adapted from MS.
Set objLogParser = CreateObject("MSUtil.LogQuery")
Set objInputFormat = CreateObject("MSUtil.LogQuery.FileSystemInputFormat")
objInputFormat.Recurse = 0
Set objOutputFormat = CreateObject("MSUtil.LogQuery.DataGridOutputFormat")
strQuery = "SELECT Name, CreationTime FROM '\\192.168.204.220\c$\Documents and Settings\gw310\Favorites\*.*' " & "WHERE NOT Attributes LIKE '%D%' ORDER BY CreationTime"
objLogParser.ExecuteBatch strQuery, objInputFormat, objOutputFormat
====================================================================
It does work, however it does not list the files within folders that have been created within the FAVORITES folder.
So essentially what I need is a solution that will list all the files even if they are within a sub-folder which sits within the FAVORITES folder
Can some one please show me how this can be achieved, regards HG363