当前位置:首页 > 应用技巧 > Win10添加右键打开cmd

Win10添加右键打开cmd


image.png

0x01 概述

Windows10 升级以后,把默认的右键打开cmd修改为了powershell,本文将提供方法修改回cmd

0x02 操作方法

效果如下:

右键:
在此处打开命令行窗口
在此处打开命令行窗口(管理员)

shift + 右键:
在此处打开 Powershell 窗口
在此处打开 Powershell 窗口(管理员)


将下面的代码复制一下,保存为 powershelltocmd.reg 然后双击导入即可。

Windows Registry Editor Version 5.00
 
; 若原先有,先删除原来的
[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin]
 
; 1.右键:命令行
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
@="在此处打开命令行窗口"
 
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
@="cmd.exe -noexit -command Set-Location -literalPath \"%V\"" 
 
; 2.右键:命令行(管理员)
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
@="在此处打开命令行窗口(管理员)"
"ShowBasedOnVelocityId"=dword:00639bc8
 
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command]
@="cmd.exe /s /k pushd \"%V\""
 
; 3.shift+右键:Powershell(管理员)
[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin]
@="在此处打开 Powershell 窗口(管理员)"
"Extended"=""
 
[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\command]
@="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\" -windowstyle hidden -Command $stpath = pwd; Start-Process PowerShell -ArgumentList \\\"-NoExit\\\", \\\"-Command Set-Location -literalPath '%V'\\\" -verb RunAs"


参考地址:https://www.waitalone.cn/technology/win10cmd.html

除特别注明外,本站所有文章均为浮生若梦原创,转载请注明出处来自http://vbboy.com/?id=42

发表评论

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。