Windows10提升效率小Tips

GreyWang發表於2023-04-17

資源管理器右鍵新增開啟cmd視窗指令

資源管理器空白處右鍵新增開啟cmd視窗命令,直接開啟cmd並切換到當前目錄

  • 首先刪除該指令
  • 新增該指令條目、名稱,然後新增具體的指令
  • 此.reg檔案必須以UTF-8-BOM編碼格式儲存,否則無法設定中文名稱
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
@="OpenCMDHere"
"MUIVerb"="此處開啟命令列視窗"

[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
@="cmd.exe /s /k pushd \"%V\""

新增管理員許可權的cmd視窗指令

  • 藉助PowerShell開啟cmd實現了管理員許可權模式,但是會閃現一下powershell視窗
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\AdminOpenCmd]
@="管理員開啟命令視窗"
"Icon"="cmd.exe"
 
[HKEY_CLASSES_ROOT\Directory\Background\shell\AdminOpenCmd\command]
@="PowerShell -windowstyle hidden -Command \"Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs\""

相關文章