1. 程式人生 > >批處理 根據埠號查詢pid 然後殺掉程序

批處理 根據埠號查詢pid 然後殺掉程序

@echo off & color 3d & setlocal enabledelayedexpansion 
  ::ipconfig>ip.txt

  
netstat -aon |findstr 6666>pid.txt
	 
     for /f "delims=" %%a in (pid.txt) do (
		
      for /f "tokens=1* delims=:" %%i in ('call echo %%a^|find /i "TCP"') do (
     	 echo %%a
	 ::讀取出內容過濾後,寫入另一個記事本中
	 rem Echo %%a>>"text.txt"
        )  
    )
rem 讀取檔案中內容
set /P OEM=<pid.txt

rem 擷取檔案中的字串

echo  %OEM:~71,76%

taskkill /f /pid %OEM:~71,76%