zoukankan      html  css  js  c++  java
  • 右键菜单怎样添加“在此处打开命令提示符”选项

    效果图:

    1.增加命令提示符

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOTDirectoryshellOpenCmdHere]
    @="在此处打开命令提示符"
    "Icon"="cmd.exe"
    
    [HKEY_CLASSES_ROOTDirectoryshellOpenCmdHerecommand]
    @="cmd.exe /s /k pushd "%V""
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHere]
    @="在此处打开命令提示符"
    "Icon"="cmd.exe"
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHerecommand]
    @="cmd.exe /s /k pushd "%V""
    
    [HKEY_CLASSES_ROOTDriveshellOpenCmdHere]
    @="在此处打开命令提示符"
    "Icon"="cmd.exe"
    
    [HKEY_CLASSES_ROOTDriveshellOpenCmdHerecommand]
    @="cmd.exe /s /k pushd "%V""
    
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHere]
    @="在此处打开命令提示符"
    "Icon"="cmd.exe"
    
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHerecommand]
    @="cmd.exe /s /k pushd "%V""
    

      2.增加PowerShell

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOTDirectoryshellOpenPsHere]
    @="在此处打开PowerShell"
    "Icon"="powershell.exe"
    
    [HKEY_CLASSES_ROOTDirectoryshellOpenPsHerecommand]
    @="powershell.exe -noexit -command Set-Location -literalPath '%V'"
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenPsHere]
    @="在此处打开PowerShell"
    "Icon"="powershell.exe"
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenPsHerecommand]
    @="powershell.exe -noexit -command Set-Location -literalPath '%V'"
    
    [HKEY_CLASSES_ROOTDriveshellOpenPsHere]
    @="在此处打开PowerShell"
    "Icon"="powershell.exe"
    
    [HKEY_CLASSES_ROOTDriveshellOpenPsHerecommand]
    @="powershell.exe -noexit -command Set-Location -literalPath '%V'"
    
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenPsHere]
    @="在此处打开PowerShell"
    "Icon"="powershell.exe"
    
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenPsHerecommand]
    @="powershell.exe -noexit -command Set-Location -literalPath '%V'"
    

      以上内容保存为缀名为OpenCmdHere.reg,双击OpenCmdHere.reg文件运行,弹出的提示点确认,修改注册表就大功告成了!

       下载链接:https://files.cnblogs.com/files/dyj057/opencmdhere.zip

  • 相关阅读:
    继承在WCF中的问题和解决办法
    bootstrap插件学习-bootstrap.dropdown.js
    C#山寨版本拨号客户端
    关于Certificate、Provisioning Profile、App ID的介绍及其之间的关系
    [源码]Literacy 快速反射读写对象属性,字段
    Hadoop Streaming框架学习(一)
    AOP详解
    SESSION会话技术
    mongodb 备份、还原、导入、导出
    Qt 技巧: 解决未解析的SSL问题
  • 原文地址:https://www.cnblogs.com/dyj057/p/9020570.html
Copyright © 2011-2022 走看看