| 1234567891011121314151617181920212223 |
- @echo off & setlocal enabledelayedexpansion
- ::ipconfig>ip.txt
-
-
- netstat -aon |findstr 8004>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%
- exit 0
|