参考
Service overview and network port requirements for Windows
命令行输入 netstat -ano
或者 netsh int ipv4 show excludedport tcp
查看端口占用情况。
对于fq软件常见的原因是第二个命令,也就是有些端口被系统保留了。
解决:以管理员身份启动命令行并输入 netsh int ipv4 add excludedportrange protocol=tcp startport=xxx numberofports=1
其中 xxx
为你的软件需要排除的特定端口
取消刚刚的端口排除也简单, netsh int ipv4 delete excludedportrange protocol=tcp startport=xxx numberofports=1
即可