This article is result of a friend's query related to "How to kill a windows/DOS process within a windows Batch file.
This is the solution in brief:
START "do something window" dir
FOR /F "tokens=2" %I in ('TASKLIST /NH /FI "WINDOWTITLE eq do something window"' ) DO SET PID=%I
ECHO %PID%
TASKKILL /PID %PID%
FOR Loop is only required if there are multiple processes.
A link is what I am going to provide as for more information:
Click here to access the solution