Hi Victor
Actually trying to generate some daily logs, I need to call ExLogAnalyzer from a planned task with arguments
If I enter parameters in config file "StartTimeLocal" and "EndTimeLocal", it does work
However, if I try to pass theses arguments when calling ExLogAnalyzer from command line, it does not seem to use arguments or tell me that string is not a valid DateTime
I tried with a variety of quotes, double quotes, single quotes
ExLogAnalyzer.exe -StartTimeLocal 2010-03-29 12:07:13Z -EndTimeLocal 2010-03-30 12:07:13Z
(does not work because of spaces)
ExLogAnalyzer.exe -StartTimeLocal "2010-03-29 12:07:13Z" -EndTimeLocal "2010-03-30 12:07:13Z"
(invalid datetime)
ExLogAnalyzer.exe -StartTimeLocal '2010-03-29 12:07:13Z' -EndTimeLocal '2010-03-30 12:07:13Z'
(invalid datetime)
Any idea for me?