I've run into an interesting situation with dumpevt. I've been using the following command line to dump and clear the security event logs from the Windows machines on my network.
dumpevt /computer= %%i /logfile=sec /outfile=c:\logs\%today%-sec.evt /clear >>dumpstatus.txt
where %i is the host and %today% is a date-time stamp. The event log is dumped and cleared with no problem, but dumpevt appears to be ignoring the "Format=no" line in dumpevt.ini -- I keep getting CSV output. How can I dump the logs in native format?
dumpevt /computer= %%i /logfile=sec /outfile=c:\logs\%today%-sec.evt /clear >>dumpstatus.txt
where %i is the host and %today% is a date-time stamp. The event log is dumped and cleared with no problem, but dumpevt appears to be ignoring the "Format=no" line in dumpevt.ini -- I keep getting CSV output. How can I dump the logs in native format?
Comment