powershell cmd 常用命令
Posted 乘于时
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell cmd 常用命令相关的知识,希望对你有一定的参考价值。
powershell cmd 通用命令相关
//显示环境变量
echo %Path%
C:WindowsSystem32driversetchosts
%windir%System32driversetchosts
tab 键补全
进入桌面
进入desktop
用户名可以自动补
C:> cd C:users<用户名>Desktop
cmd如何打开当前文件夹或者文件
cd xxx
Method-1:start . “.”代表当前目录。
Method-2: start %cd%
1.md --created directory
2.cd d://xxx --
3.start %cd% --opened current window
4.cmd查看命令的用法 直接在命令后面追加 空格/?就可以了,
如:del空格/?
e.g.: rd /?
1.删除D盘的123文件夹以及123文件夹里面所有的内容
rd/s/q d:123 这样就删除了
2.删除D盘的456文件夹里面的mytest记事本文件,删除文件要加缀名
del/f/s/q d:456mytest.txt
以上是关于powershell cmd 常用命令的主要内容,如果未能解决你的问题,请参考以下文章