dir 查看当前目录下文件 相当于unix中 ls
chdir 查看当前路径 相当于unix中 pwd
进入U盘 直接输入盘符,比如 D盘是U盘,直接输入 D: 回车
使用 PowerShell 查看进程
Get-Process mysqld
或 Get-Process my*
使用 cmd 管理员 删除 添加的服务
sc delete MongoDB
查看端口 pid
netstat -aon|findstr "9050"
协议 本地地址 外部地址 状态 PID
TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016
通过PID查看对应的进程
tasklist|findstr "2016"