All Tags >
FS input format (
RSS)
Sorry, but there are no more tags available to filter with.
-
-
I'd like to know what users have rights on files in a folder. Can I use FS to do this?
-
You can retrieve the owner information with this : http://download.microsoft.com/download/f/7/8/f786aaf3-a37b-45ab-b0a2-8c8c18bbf483/xcacls_installer.exe It's a vbs script : XCACLS.VBS; and it's resolves SID.
-
I've have very good results using LogParser in various ways, but I'm now trying to get a list of files on a different PC than I'm running the commands from; I'm in a domain, and have admin rights on both the local and remote PC. I've tried using "FROM \\%REM-PC%\ *.*" in my SQL query, but was told 'The...
-
I'd like to user logparser to search recursively from a starting directory for all files greater than 200k. Then save the file name, path and date to an html file. I've see where users have used the Top 10 command which I can replicate, but I'm having difficulty doing a search that lists the files if...
-
Hi, the best solution is ... WHERE EXTRACT_EXTENSION( Name ) in ('jpg';'gif';'png';'bmp';etc) ...
-
... WHERE NAME LIKE '%.jpg%' OR NAME LIKE '%.gif%' OR ... alternatively pass the extension as an argument to the batch file (e.g. myscript.bat jpg) then you can reuse it against anything ... WHERE NAME LIKE '%%.%1%%' ...
-
This is thread hijacking :-) Regarding FirmByte's problem, sorry for not getting your question earlier. Nope, the FS input format does not return that information. That's a good item for the next version though ;-) Regarding Jr's problem: try with "oEVTInputFormat.resolveSIDs = True". When you say it...
-
Hi, I was using the example included in the doc. I want to know if someone knows how to resolve the SIDS in this script. But I want to include this line: oEVTInputFormat.resolveSIDs = "ON" How can I resolve the SIDs here?? ThanX. Dim oEVTInputFormat Dim oCSVOutputFormat Dim strQuery Set oLogQuery = CreateObject...
-
Gabriele, thankx for your reply, but not sure I understand. What I'm trying to do is search a directory for various file types and return the details of those files matching in an excel spreadsheet. I'd also like my query to return the file owners user name, from looking through the Logparser documentation...