All Tags >
COM input format (
RSS)
Sorry, but there are no more tags available to filter with.
-
Read the section in the help file on writing custom formats, look in the examples directory for an example written in C#, look in the Repository (link at the bottom) for further examples.
-
Hi, I am Ruchir From India, since last few days I was searching some way out to parse big log files and show information in the form of reports, while Searching I came Across Log Parser from Microsoft, I am still learning about this from the help and articles, I need to parse log files and generate some...
-
Here is a vbs script that will generate charts The comment in chart type are some of the different types of charts. Set objLogParser = CreateObject("MSUtil.LogQuery") Set objInputFormat = CreateObject("MSUtil.LogQuery.IISW3CInputFormat") Set objOutputFormat = CreateObject("MSUtil...
-
Hi, I'm using LogParser 2.2.10 on a Windows 2000 Server PC with SP4. I have implemented the COM interface to extract data from my company binary log files. Problem arises when I try to retrieve a 8 bytes integer value or a TIMESTAMP from my binary log file. The Logparser gives the error : "Error retrieving...
-
Hi, I want to create chart programmatically using vb.net.Pls send me a sample if any body is having. Thanks, Arun
-
With only a slight modification your suggestion worked like a charm Thanks Muchly Floyd Set objLogParser = CreateObject("MSUtil.LogQuery") Set objInputFormat = CreateObject("MSUtil.LogQuery.IISW3CInputFormat") objInputFormat.recurse = -1 Set objOutputFormat = CreateObject("MSUtil.LogQuery.CSVOutputFormat...
-
Try this: Set objLogParser = CreateObject("MSUtil.LogQuery") Set objInputFormat = CreateObject("MSUtil.LogQuery.IISW3CInputFormat") objInputFormat.recurse = 0 Set objOutputFormat = CreateObject("MSUtil.LogQuery.CSVOutputFormat") objOutputFormat.rtp = -1 strQuery = "SELECT LogFileName, time, REVERSEDNS...
-
\\All , I am in the process of converting my ftp log file collection script from batch file to completely done within script. logparser -i:iisw3c -o:csv -recurse:1 "select LogFileName, time, REVERSEDNS( c-ip ), cs-method, cs-uri-stem, sc-status INTO c:\logfil~1\NAM_FTP_Sent_Files_Breakdown.csv from c...
-
I figured out what I was doing wrong. I used the wrong parameter in my Assembly.vb file, and I left two additional ones from the LogParser example documentation out. Some how I missed the example entries. Next time I'll scroll all the way to the bottom of the file! The following entries from the example...
-
This is the follow-up to my previous post. By the way I'm using Visual Studio 2003. I placed the keyfile.snk in proj\obj\Debug directory where Visual Studio seems to find it after referencing it in my AssemblyInfo.vb file using: <Assembly: AssemblyKeyFileAttribute("keyfile.snk")>. Now the error...