Please Help me in this out that I have two instances of the same EXE file running at same time and I want to close only one of them, Both exe are running at the same time and we want to close one using bat file.
If I am using this code.
@echo off
cd "D:\demoFolder\"
taskkill /f demo.exe
pause
but it is closing all the instances of Exe it found. I run this demo.exe from two directories and I want to close the one from a certain directory.
I made a little batch script. But I only tested it a single path exe. I think it should be ok...
Tnx again to Stephan for the input.
Update
✅ I tested it with a random app inside two different folders. It works for me.
❌
Btw.:SET /A "TESTNUM=%%i"
converts input into an number. I don't think there is a ProcessID Cero? It is to handle the output oftasklist
if no PID is found at all.