查看端口:
netstat -ano
查看具体端口号:
netstat -ano |findstr "端口号"
根据进程ID查看对应的进程名称:
tasklist |findstr "进程id号"
杀死对应的进程:
taskkill /f /t /im "进程id或者进程名称"
原文地址:https://www.cnblogs.com/zxh06820/p/12396212.html
时间: 2024-11-11 20:44:40
查看端口:
netstat -ano
查看具体端口号:
netstat -ano |findstr "端口号"
根据进程ID查看对应的进程名称:
tasklist |findstr "进程id号"
杀死对应的进程:
taskkill /f /t /im "进程id或者进程名称"
原文地址:https://www.cnblogs.com/zxh06820/p/12396212.html