The BAT script gets the pid through the port number and ends the process
For / f "tokens=5" an in ('netstat / ano ^ | findstr 8088') do taskkill / F / pid% a
/ / for loop, extract the fifth field (from the result of the command) and assign it to the variable a, and execute the kill process call variable a
Pause