win10为右键菜单添加简单的DOS小命令
格式
Windows Registry Editor Version 5.00
; 若原先有,先删除原来的
[-HKEY_CLASSES_ROOT\Directory\Background\shell\路径文件夹名称]
; 1.右键:命令行 @后为显示名字,icon为图标
[HKEY_CLASSES_ROOT\Directory\Background\shell\路径文件夹名称]
@="右键名称"
"Icon"="图标路径"
[HKEY_CLASSES_ROOT\Directory\Background\shell\路径文件夹名称\command]
@="运行内容"
示例
为右键添加新建 [临时] 文件夹的命令
1.新建一个文本文档
2.将以下文本复制进去,并保存为 reg 文件,编码为 ANSI 。
Windows Registry Editor Version 5.00
; 若原先有,先删除原来的
[-HKEY_CLASSES_ROOT\Directory\Background\shell\linshi]
; 1.右键:命令行 @后为显示名字,icon为图标
[HKEY_CLASSES_ROOT\Directory\Background\shell\linshi]
@="临时"
"Icon"="C:\\windows\\system32\\cmd.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\linshi\command]
@="cmd.exe /c md 临时"
2.运行 临时.reg