Windows10 right click to add "open command window"

Windows10 right click to add "open command window"

1. Write OpenCmdHere.reg file

Requirements: 1. Create a new file .txt file and rename it to OpenCmdHere.reg
2. Enter the following into the file:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\OpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"

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

[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"

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

[HKEY_CLASSES_ROOT\Drive\shell\OpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"

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

[HKEY_CLASSES_ROOT\LibraryFolder\background\shell\OpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"

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

3. The encoding format of the saved file is: ANSI
3-1. The method is to use Save As to select the encoding format of the file after editing the note: ANSI
Insert picture description here

2. Execute the OpenCmdHere.reg file

After the execution is complete, you can right-click to see this interface at any location:
Insert picture description here
Original reprint address: https://blog.csdn.net/mooneve/article/details/78821843 Windows10 right-click to add "open command window here"

Guess you like

Origin blog.csdn.net/rao991207823/article/details/107376363