美文网首页
此处打开cmd

此处打开cmd

作者: 何家小富富 | 来源:发表于2022-03-09 22:41 被阅读0次

    Windows10 添加shift + 右键打开cmd

    怎么为文件夹添加右键菜单,在此处打开CMD窗口

    此处打开CMD注册.reg

    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt]
    @="在此处打开cmd"
    "Icon"="c:\windows\system32\cmd.exe"
    
    [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command]
    @="cmd.exe /s /k pushd \"%V\""
    
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt]
    @="在此处打开cmd"
    "Icon"="c:\windows\system32\cmd.exe"
    
    [HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt\command]
    @="cmd.exe /s /k pushd \"%V\""
    
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Drive\shell\cmdprompt]
    @="在此处打开cmd"
    "Icon"="c:\windows\system32\cmd.exe"
    
    [HKEY_CLASSES_ROOT\Drive\shell\cmdprompt\command]
    @="cmd.exe /s /k pushd \"%V\""
    

    VScode打开注册.reg

    自己核对 vscode 的路径

    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\*\shell\VSCode]
    @="VScode打开"
    "Icon"="D:\\soft\\VScode\\Code.exe"
     
    [HKEY_CLASSES_ROOT\*\shell\VSCode\command]
    @="\"D:\\soft\\VScode\\bin\\vscode.cmd\" \"%1\""
     
    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\Directory\shell\VSCode]
    @="VScode打开"
    "Icon"="D:\\soft\\VScode\\Code.exe"
     
    [HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
    @="\"D:\\soft\\VScode\\bin\\vscode.cmd\" \"%V\""
     
    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode]
    @="VScode打开"
    "Icon"="D:\\soft\\VScode\\Code.exe"
     
    [HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode\command]
    @="\"D:\\soft\\VScode\\bin\\vscode.cmd\" \"%V\""
    
    

    ·

    UEStudio打开.reg

    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\*\shell\UEStudio]
    @="UEStudio打开"
    "Icon"="E:\\GreanSoft\\UEStudio\\UEStudio.exe"
     
    [HKEY_CLASSES_ROOT\*\shell\UEStudio\command]
    @="\"E:\\GreanSoft\\UEStudio\\UEStudio.exe\" \"%1\""
     
    

    UltraEdit打开文件注册.reg

    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\*\shell\UltraEdit]
    @="UltraEdit打开"
    "Icon"="E:\\GreanSoft\\UltraEdit\\uedit64.exe"
     
    [HKEY_CLASSES_ROOT\*\shell\UltraEdit\command]
    @="\"E:\\GreanSoft\\UltraEdit\\uedit64.exe\" \"%1\""
     
    

    BowPad打开文件注册.reg

    Windows Registry Editor Version 5.00
     
    [HKEY_CLASSES_ROOT\*\shell\BowPad]
    @="UltraEdit打开"
    "Icon"="E:\\GreanSoft\\BowPad\\BowPadx64.exe"
     
    [HKEY_CLASSES_ROOT\*\shell\BowPad\command]
    @="\"E:\\GreanSoft\\BowPad\\BowPadx64.exe\" \"%1\""
     
    

    相关文章

      网友评论

          本文标题:此处打开cmd

          本文链接:https://www.haomeiwen.com/subject/zpszlltx.html