其他分享
首页 > 其他分享> > cmd 命令大全

cmd 命令大全

作者:互联网

win+r 输入cmd 回车打开cmd窗口

系统相关

输入 compmgmt.msc -> 打开计算机中的管理窗口
输入 services.msc -> 打开服务窗口
输入 control -> 打开控制面板
输入 regit -> 打开注册表

服务相关

net start mysql57 和 net start mysql80 -> 启动指定服务(mysql为例)
停止指定服务(mysql): net stop mysql57 和 net stop mysql80(根据版本选择)
查看对应端口的信息: netstat -aon|findstr 3306(3306为例)
查看对应pid的应用信息:tasklist|findstr pid号
关闭对应pid对应的应用:taskkill -f -pid pid号
根据路径创建服务:sc create 服务名 binpath= "服务路径(exe文件)" 等号后边有空格 比如MySQL:sc create mysql binpath= "E:\MySql5.5\bin\mysqld.exe"
根据服务名删除服务:sc delete 服务名

标签:服务,cmd,pid,命令,mysql,sc,net,大全
来源: https://www.cnblogs.com/rhy2103/p/16601617.html