windows中查看端口,关闭端口

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/LGHunter/article/details/83022322

windows中查看端口,关闭端口:
1、以管理员身份打开cmd;

2、执行命令
#查看某个具体端口信息
netstat -ano | find “port”

#查看该端口的应用
tasklist | findstr “processport”

#关闭端口
taskkill /f /t /im xxx

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/LGHunter/article/details/83022322