You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
setlocal enabledelayedexpansion
|
|
for /f "delims= tokens=1" %%i in ('netstat -aon ^| findstr "18080"') do (
|
|
set a=%%i
|
|
goto js
|
|
)
|
|
:js
|
|
taskkill /f /pid "!a:~71,5!"
|