You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
251 B
Batchfile

@echo off
echo [INFO] 8011 포트 사용 중인 프로세스 종료 시도...
for /f "tokens=5" %%i in ('netstat -ano ^| findstr :8011 ^| findstr LISTENING') do (
echo [INFO] PID=%%i 종료
taskkill /PID %%i /F
)
echo [OK] 완료.
exit /b 0