windows常用命令(磁盘操作篇)
- 检查磁盘状态:
指定盘符: chkdsk c: 修复错误: chkdsk /f
- 检查磁盘类型:
指定盘符: chkntfs c: 修复错误: chkntfs /c c:
- 将fat卷转换成ntfs:
convert c: /fs:ntfs
- 整理磁盘碎片:
defrag c: /u /v
- 开启/关闭磁盘性能计数器:
开启: diskperf /y 关闭: diskperf /n
- 格式化:
format /q c:
- 设置/显示主机名:
显示: hostname 设置: hostname lee
- 设置卷标:
指定盘符: label c:win10 #设置c盘的卷标为win10
- 设置虚拟路径(可保存下次接着使用):
设置: subst z: c:\test #用z:代替c:\test 进入: cd /d z: #相当于进入了c:\test 删除: subst /d z:
- 设置磁盘检测:
开启: verify on 关闭: verify off
网页标题:windows常用命令(磁盘操作篇)
转载注明:http://scjbc.cn/article/giishs.html