本帖最后由 namejm 于 2024-3-14 23:43 编辑
开机自启动的注册表文件内容为:
[Asm] 纯文本查看 复制代码 Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run]
"QuickJump"="\"E:\\test\\QuickJump\\Win32\\Debug\\QuickJump.exe\""
把 Quickjump 添加到右键菜单的注册表文件内容为:
[Asm] 纯文本查看 复制代码 Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\添加到 QuickJump 列表中]
"Icon"="\"E:\\test\\QuickJump\\Win32\\Debug\\QuickJump.exe\""
[HKEY_CLASSES_ROOT\*\shell\添加到 QuickJump 列表中\command]
@="\"E:\\test\\QuickJump\\Win32\\Debug\\QuickJump.exe\" /AddToJumpList \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\添加到 QuickJump 列表中]
"Icon"="\"E:\\test\\QuickJump\\Win32\\Debug\\QuickJump.exe\""
[HKEY_CLASSES_ROOT\Directory\shell\添加到 QuickJump 列表中\command]
@="\"E:\\test\\QuickJump\\Win32\\Debug\\QuickJump.exe\" /AddToJumpList \"%1\""
请按以上内容手动修改对应的注册表项(假设程序的完整路径为 E:\test\QuickJump\Win32\Debug\QuickJump.exe) |