Creating a submenu in the explorer-shell-extention?

前端 未结 1 986
感情败类
感情败类 2021-01-18 09:08

I created a small script that changes a filename (replacing spaces with _, etc.). I\'m controlling this script with parameters.

Now I\'d like to include

相关标签:
1条回答
  • 2021-01-18 09:27

    You can just edit this to expand your needs.

    Windows Registry Editor Version 5.00
    
    ;           TOOLS MENU
    
                [HKEY_CLASSES_ROOT\*\shell\contexttools_anchor]
                    "MUIVerb"="SendTo Tools"
                    "Icon"="...YOUR PATH...\\files\\Tools.ico"
                "ExtendedSubCommandsKey"="*\\ContextMenus\\contexttools"
                    ; "Extended"=""
    ; __________________________________________________________________________ >
    
        [HKEY_CLASSES_ROOT\*\ContextMenus\contexttools\Shell\001cmd]
            "MUIVerb"="Notepad 2"
            "Icon"="...YOUR PATH...\\Tools\\app1.exe"
    
                [HKEY_CLASSES_ROOT\*\ContextMenus\contexttools\Shell\001cmd\command]
                    @="...YOUR PATH...\\Tools\\app1.exe \"%1\""
    ; __________________________________________________________________________ >
    [HKEY_CLASSES_ROOT\*\ContextMenus\contexttools\Shell\005seperator]
    "CommandFlags"=dword:00000008
    ; __________________________________________________________________________ >
    
        [HKEY_CLASSES_ROOT\*\ContextMenus\contexttools\Shell\006cmd]
            "MUIVerb"="Hash Compare"
            "Icon"="...YOUR PATH...\\Tools\\app2.exe"
    
                [HKEY_CLASSES_ROOT\*\ContextMenus\contexttools\Shell\006cmd\command]
                    @="...YOUR PATH...\\Tools\\app2.exe \"%1\""
    ; __________________________________________________________________________ >
    
    0 讨论(0)
提交回复
热议问题