当我点击.jar文件时,我试图添加一个右键单击菜单项(运行Powershell脚本),但我似乎无法显示它。我尝试了两个不同的注册表位置,但都没有显示我的右键单击命令。对我做错的任何帮助?以下是我尝试过的两种方式:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.jar\shell\ABC]
@="&ABC"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.jar\shell\ABC\command]
@="<path_to_my_powershell_script> %1"
和
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\jarfile\shell\ABC]
@="&ABC"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\jarfile\shell\ABC\command]
@="<path_to_my_powershell_script> %1"
同样,问题不在于脚本本身(至少现在还没有),它实际上是让命令显示在右键单击菜单上。
感谢。