前言:作為乙個程式猿 win 的cmd 命令也是會常用到的
輸入 help,檢視幫助;
tab 鍵,自動補全;
上/下方向鍵,檢視歷史命令;
右鍵視窗標題欄 -> 屬性,可以修改外觀樣式。
關機:shutdown /s
重啟:shutdown /r
登出:shutdown /l
休眠:shutdown /h /f
取消關機:shutdown /a
定時關機:shutdown /s /t 3600(3600 秒後關機)
1、 切換目錄,進入指定資料夾:
切換磁碟:d:(進入 d 盤)
切換磁碟和目錄:cd /d d:/test(進入 d 盤 test 資料夾)
進入資料夾:cd \test1\test2(進入 test2 資料夾)
返回根目錄:cd \
回到上級目錄:cd …
新建資料夾:md test
2、 顯示目錄內容:
顯示目錄中檔案列表:dir
顯示目錄結構:tree d:\test(d 盤 test 目錄)
顯示當前目錄位置:cd
顯示指定磁碟的當前目錄位置:cd d:
延遲和丟包率:ping ip/網域名稱
ping 測試 5 次:ping ip/網域名稱 -n 5
清除本地 dns 快取:ipconfig /flushdns
路由追蹤:tracert ip/網域名稱
1、程序管理:
顯示當前正在執行的程序:tasklist
執行程式或命令:start 程式名
結束程序,按名稱:taskkill /im notepad.exe(關閉記事本)
結束程序,按 pid:taskkill /pid 1234(關閉 pid 為 1234 的程序)
2、服務管理:
5. 顯示當前正在執行的服務:net start
6. 啟動指定服務:net start 服務名
7. 停止指定服務:net stop 服務名
我們可以將常用的命令輸入記事本中,並儲存為字尾為 .bat 的可執行檔案。
CMD常用命令
c users administrator where where r dir q f t pattern.描述 顯示符合搜尋模式的檔案位置。在預設情況下,搜尋是在當前目錄和 path 環境變數指定的路徑中執行的。引數列表 r 從指定目錄開始,遞迴性搜尋並顯示符合指定模式的檔案。q 只返回退出 不顯...
CMD常用命令
刪除資料夾命令 rd s q d logs test 刪除檔案命令 del f s q d logs test.txt 開啟telnet服務的命令 net start telnet 只能開啟沒有被禁用的服務 sc config telnet start demand sc config telnet...
cmd常用命令
命令 命令解析 arp a 檢視快取記憶體中的所有專案 arp a ip 實體地址 向arp專案快取記憶體中輸入乙個靜態專案 arp d ip 刪除乙個靜態專案 attrib 檔名 a r s h 新增某檔案存檔,唯讀,系統,隱藏屬性 attrib 檔名 a r s h 去掉某檔案的存檔,唯讀,系統...