Windows 注册表自定义

Windows 注册表自定义

2018/09/13

打开注册表编辑器: regedit

修改应用图标

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Applications\xxx.exe\DefaultIcon]
@="D:\\xxx\\appicon.png"

文件默认名

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\NamingTemplates]
"CopyNameTemplate"="%s-dup"
"RenameNameTemplate"="Template"

右键新建菜单添加自定义文件类型

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.py]
@=".py"

[HKEY_CLASSES_ROOT\.py\ShellNew]
"NullFile"=""
"FileName"="temp.py"

右键菜单增加应用快捷打开

  • shell 后就是显示的菜单项名称, 会按照字典序排序

文件

Windows Registry Editor Version 5.00

; 若只为用户生效, 则替换 HKEY_CLASSES_ROOT 为: HKEY_CURRENT_USER\Software\Classes
[HKEY_CLASSES_ROOT\*\shell\Open with notepad--]

[HKEY_CLASSES_ROOT\*\shell\Open with notepad--\command]
@="D:\\notepad--\\notepad--.exe \"%1\""

文件夹

Windows Registry Editor Version 5.00

; 若只为用户生效, 则替换 HKEY_CLASSES_ROOT 为: HKEY_CURRENT_USER\Software\Classes
[HKEY_CLASSES_ROOT\Directory\shell\Zidea]
@="Open Folder in Idea"
"Icon"="D:\\idea\\bin\\idea.ico"

[HKEY_CLASSES_ROOT\Directory\shell\Zidea\command]
@="\"D:\\idea\\bin\\idea64.exe\" \"%V\""
Last updated on