I need to kill an application roughly so I can get phantom subscriber of that application in my database (this can not be produced by closing the application). Manually, if
Shell "taskkill.exe /f /t /im processname.exe"
This forces (/f
) the terminatation of the process with the image name (/im
) of processname.exe, and any child processes which were started by it (/t
). You may not need all these switches. See the taskkill
command help for more information (type the following at the command line):
taskkill/?