赞
踩
快捷键 Win+R
打开运行,输入 regedit
进入注册表
计算机\HKEY_CLASSES_ROOT\Directory\Background\shell
Background
的 shell
目录下新建项,取名 OpenCmd
cmd
】这里的取名就是鼠标实际右键时显示打开cmd的名称,如↓
command
项cmd.exe -noexit -command Set-Location -literalPath \"%V\"
至此,基本的右键打开 cmd
的功能实现,下面是附上右键cmd的图标
实际就是找到cmd程序的位置,选则 cmd.exe 文件的 Icon 图标复制cmd的路径
C:\Windows\system32
,后边补上\cmd.exe
,组成最终 cmd 图标的数值数据
具体的数值名称和数值数据如下↓
切换到 OpenCmd
项下,在空白页右键新建 字符串值(S)
数值名称:Icon
数值数据:C:\Windows\system32\cmd.exe
至此cmd图标添加完成,效果如下↓
计算机\HKEY_CLASSES_ROOT\Directory\Background\shell
Background
的 shell
目录下新建项,取名 OpenPowershell
powershell7
】因个人用的是Powershell7的版本,故取名 powershell7
这里的取名就是鼠标实际右键时显示打开powershell的名称,如↓
command
项此处注意,如果是默认Powershell,版本会是Powershell5.x但此处本机已升级Powershell7.x【如下图】所以实际打开powershell5.x的命令值与powershell7.x会有所区别
具体区别如下↓
Powershell5.xpowershell.exe -noexit -command Set-Location -literalPath \"%V\"
Powershell7.xpwsh.exe -noexit -command Set-Location -literalPath \"%V\"
可复制代码块↓
powershell.exe -noexit -command Set-Location -literalPath \"%V\"
pwsh.exe -noexit -command Set-Location -literalPath \"%V\"
至此,基本的右键打开 powershell
的功能实现,下面是附上右键powershell的图标
切换到 OpenPowershell
项下,在空白页右键新建 字符串值(S)
数值名称:Icon
数值数据:Powershell5.x C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Powershell7.x C:\Program Files\PowerShell\7\pwsh.exe
至此powershell图标添加完成,效果如下↓
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。