Windows常用命令
Socket Address Conflict
Description:通常每个套接字地址(协议/网络地址/端口)只允许使用
一次。
$ netstat
$ netstat -aon|findstr 9000
$ tasklist /fi "pid eq 9000"
$ taskkill /pid 276 /f
windows useful command
1.make file
$ type NUL > test.py
2.list files
$ dir /s /b/ /o:gn # files and dir
$ tree /f # files
Windows常用命令
https://blackist.org/2017-10-01-command-debug/