In a batch file, I have the command:
kill /f callanalyzer.exe
Instead of closing the running processors, the screen will constantly scroll:
C:\temp>kill callanalyzer.exe
And never pass that point.
What can be done to make it close the running processors (if exists) and then move on?
Kill is for 2000 and taskkill is for XP. So in the end my batch file is going to have both:
kill /f callanalyzer.exe
taskkill /f /im callanalyzer.exe
Thank you.