1. 程式人生 > >powershell cmd 常用命令

powershell cmd 常用命令

method 當前目錄 通用 nbsp 命令 shell 相關 des 補全

powershell cmd 通用命令相關

//顯示環境變量

echo %Path%

C:\Windows\System32\drivers\etc\hosts

%windir%\System32\drivers\etc\hosts

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:\456\mytest.txt

powershell cmd 常用命令