zoukankan      html  css  js  c++  java
  • win10 右键添加cmd当前目录打开

    新建.txt粘贴以下命令保存修改扩展名为.reg

    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOTDirectoryshellOpenCmdHere]
    @="在此处打开命令提示符"
    "Icon"="cmd.exe"
    [HKEY_CLASSES_ROOTDirectoryshellOpenCmdHerecommand]
    @="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs""
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHere]
    @="在此处打开命令窗口"
    "Icon"="cmd.exe"
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHerecommand]
    @="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs""
    [HKEY_CLASSES_ROOTDriveshellOpenCmdHere]
    @="在此处打开命令窗口"
    "Icon"="cmd.exe"
    [HKEY_CLASSES_ROOTDriveshellOpenCmdHerecommand]
    @="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs""
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHere]
    @="在此处打开命令窗口"
    "Icon"="cmd.exe"
    [HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHerecommand]
    @="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs""
    
  • 相关阅读:
    有关android UI 线程
    lang3日期工具类底层源码解析
    JSON业务模型拆解技巧
    math3底层源码解决多元方程组
    关于日期解析Scala语言
    maven仓库支持cdh版本配置
    kudu数据库个人简单的总结
    json数据入库kafka
    json数据写入hbase
    一只鸟的故事
  • 原文地址:https://www.cnblogs.com/lwkeny/p/12966083.html
Copyright © 2011-2022 走看看