In my project I want to start the DebugView tool through command line parameters to capture kernel logs automatically, but after finishing a task I want to stop this DebugView tool. How do I stop this tool through command line parameters?
Asked
Active
Viewed 933 times
1 Answers
2
It depends on what you want,
You could:
taskkill /IM dbgview.exe
But that might not guarantee all logs a written to the output file (I'm not sure what would happen).
You could use Debugview++ UI from https://github.com/djeedjay/DebugViewPP/releases
And define a 'stop' filter. This would stop the scrolling, but not stop collection of the data.
Leave a comment at https://github.com/djeedjay/DebugViewPP/issues/270 which I just filed to add a commandline option to do just this ;) And I will implement it.

Peter Mortensen
- 30,738
- 21
- 105
- 131

Jan Wilmans
- 665
- 6
- 10
-
Hi Jan, Thanks a lot for you clarification. It would be good if you provide support "stop" in debugview to stop capturing the debugview logs and close this tool. – Jitendra Rajput Mar 22 '17 at 06:31
-
Thanks a lot for your great help. – Jitendra Rajput Oct 26 '17 at 07:05