zoukankan      html  css  js  c++  java
  • Visual Studio Code 安装时未勾选鼠标右键的快捷打开方式的解决方案

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT*shellVSCode]
    @="Open with Code"
    "Icon"="E:\Microsoft VS Code\Code.exe"

    [HKEY_CLASSES_ROOT*shellVSCodecommand]
    @=""E:\Microsoft VS Code\Code.exe" "%1""

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryshellVSCode]
    @="Open with Code"
    "Icon"="E:\Microsoft VS Code\Code.exe"

    [HKEY_CLASSES_ROOTDirectoryshellVSCodecommand]
    @=""E:\Microsoft VS Code\Code.exe" "%V""

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCode]
    @="Open with Code"
    "Icon"="E:\Microsoft VS Code\Code.exe"

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCodecommand]
    @=""E:\Microsoft VS Code\Code.exe" "%V""

    ---------------------------------------------------分界线------------------------------------------------------------------------------

    复制分界线往上的信息,在windows内新建文本文件保存且把后缀的.txt 改为.bat 文件。

    执行注册表文件,再看下鼠标右键有没有open with code 的选项了

    记录以下,日常遇到的问题。

  • 相关阅读:
    go 基本包
    go 包
    算法笔记--数据结构--链表
    算法笔记--数据结构--队列
    算法笔记--标准模板库STL--pair
    算法笔记--标准模板库STL--stack
    算法笔记--标准模板库STL--priority_queue
    算法笔记--标准模板库STL--queue
    初识pair
    lower_bound实现离散化
  • 原文地址:https://www.cnblogs.com/zhoushunchang/p/12977179.html
Copyright © 2011-2022 走看看