Windows 右键菜单添加cmd管理员 vscode编辑等
2021/8/16 7:07:36
本文主要是介绍Windows 右键菜单添加cmd管理员 vscode编辑等,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
文件右键添加编辑功能
效果:
给任意后缀的文件都加了这个菜单项
注册表需导入项:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\editWith] @="" "MUIVerb"="&编辑" "Subcommands"="" [HKEY_CLASSES_ROOT\*\shell\editWith\shell] [HKEY_CLASSES_ROOT\*\shell\editWith\shell\notepad] @="记事本" "Icon"="C:\\Windows\\System32\\notepad.exe" [HKEY_CLASSES_ROOT\*\shell\editWith\shell\notepad\command] @="\"C:\\Windows\\System32\\notepad.exe\" \"%1\"" [HKEY_CLASSES_ROOT\*\shell\editWith\shell\VS code] "Icon"="C:\\Program Files\\Microsoft VS Code\\Code.exe" [HKEY_CLASSES_ROOT\*\shell\editWith\shell\VS code\command] @="\"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%1\""
文件夹空白处右键添加此处打开cmd
效果图:
注册表:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdShow] @="@shell32.dll,-8506" [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdShow\command] @="cmd.exe /s /k pushd \"%V\""
按下shift显示管理员身份运行cmd
注意,键名必须是runas
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\runas] @="在此处打开命令窗口(管理员)" "ShowBasedOnVelocityId"=dword:00639bc8 "Extended"="" [HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command] @="cmd.exe /s /k pushd \"%V\""
再添加一个子菜单用管理员打开powershell
迫不得已用子菜单,因为同一级只能有一个runas项,这个runas被cmd用了,只好弄个子菜单凑合凑合。不过我一般也用不到powershell
效果:
注册表:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin] @="" "Subcommands"="" "MUIVerb"="powershell管理员" "Extended"="" "ShowBasedOnVelocityId"=dword:00639bc8 [HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\shell] [HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\shell\runas] @="Powershell(管理员)" [HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\shell\runas\command] @="powershell.exe -noexit -command Set-Location -literalPath '%V'"
改完后注册表结构:
这篇关于Windows 右键菜单添加cmd管理员 vscode编辑等的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享