win10為右鍵選單新增簡單的DOS小命令

2022-10-09 20:06:12 字數 1119 閱讀 6148

windows registry editor version 5.00

; 若原先有,先刪除原來的

[-hkey_classes_root\directory\background\shell\路徑資料夾名稱]

; 1.右鍵:命令列 @後為顯示名字,icon為圖示

[hkey_classes_root\directory\background\shell\路徑資料夾名稱]

@="右鍵名稱"

"icon"="圖示路徑"

[hkey_classes_root\directory\background\shell\路徑資料夾名稱\command]

@="執行內容"  

為右鍵新增新建 [臨時] 資料夾的命令

1.新建乙個文字文件

2.將以下文字複製進去,並儲存為reg檔案,編碼為ansi

windows registry editor version 5.00

; 若原先有,先刪除原來的

[-hkey_classes_root\directory\background\shell\linshi]

; 1.右鍵:命令列 @後為顯示名字,icon為圖示

[hkey_classes_root\directory\background\shell\linshi]

@="臨時"

"icon"="c:\\windows\\system32\\cmd.exe"

[hkey_classes_root\directory\background\shell\linshi\command]

@="cmd.exe /c md 臨時"

2.執行臨時.reg

win10 右鍵選單新增Git Hash Here

1 通過在 執行 中輸入 regedit 開啟登錄檔。2 找到 hkey classes root directory background 3 在 background 下如果沒有 shell 則右鍵 新建項 shell 4 在 shell 下右鍵 新建項 open in git 其值為 git ...

win10右鍵新增cmd

win10右鍵都是什麼powershell.不是cmd,而我的powershell不知道怎麼回事,就是無法用.只能要用cmd.新建 reg格式的文字 裡面輸入 windows registry editor version 5.00 hkey local machine software class...

win10下右鍵選單新增「開啟cmd」

早期版本的win10是可以在資料夾的左上角開啟cmd的,更新後發現現在只有powershell能用了。這不方便。通過修改登錄檔,可以實現這個功能。具體做法 新建乙個.reg檔案win10 add cmd mouse right click.reg,內容如下 windows registry edit...