About the operation method of CMD

How to open CMD

1. Start + search cmd

2.win key+R search cmd

3. Under any folder, hold down shift + right mouse button and click to open the command line window (cmd) here

4. Add the cmd path in front of the address bar of the explorer

Run as administrator: choose to run as administrator

Commonly used Dos commands

1#盘符切换 盘号后+:

Insert picture description here

2#查看当前目录的所有文件 dir

Insert picture description here

#切换目录 cd /d盘号后+:

Insert picture description here

#cd..返回上一目录
#cd 加下一文件名进入下一目录
#清理屏幕 cls (clear screen
#退出终端 exit
#查看电脑的ip ipconfig
#打开应用
 calc(计算机)
 mspaint(画图工具) 
 notepad(记事本)
 #ping 命令
 ping +网站地址可查看网站网络是否正常
 #文件操作
 创建文件夹 md 目录名
 移除文件rd 目录名
 创建文件cd>文件名
 删除文件del文件名

Guess you like

Origin blog.csdn.net/q2060951710/article/details/108832323