如何从命令提示符 运行 VSCode

How to run VSCode from the command prompt

我出于安全原因不能运行VSCode明说。以前打开过,现在由于具体原因,只能从命令提示符下运行 VSCode。我试过了

start "path/to/file" codestart code "path/to/file"
但是 none 我在 Microsoft Windows [Version 10.0.17134.407]

工作

我怎样才能 运行 去 Windows+R 然后 'cmd'然后开始/ 运行?

另外,如果我可以将它用于单独的用户,那就太好了。

我正在寻找类似的东西:
Runas /user:user\admin /savecred "C:\Program Files (x86)\vs-code.exe"

如果VSCode在环境变量中,使用start是没有用的。

您可以使用 code C:\Users\%username%\Desktop\File.c 因为 exemple.If 它不起作用,我建议您使用 vbs script 而不是

您也不需要 运行 VSCode 管理员身份,除非您需要编辑受保护文件夹中的文件。

Well shoot, as it turns out that after doing some experimentation I found out that there's a way. Do this:

  1. 简单贴一下:

    runas /user:Techtiger255\admin /savecred "C:\Users\Admin\AppData\Local\Programs\Microsoft VS Code\Code.exe"
    

    在快捷方式内 (.lnk file)

  1. 打开您选择的命令行(PowershellCmd)并输入快捷方式的确切文件路径,例如: "C:\Users\Standard\Desktop/VSCODE.lnk" 然后点击开始,真的很简单,只需要找到 code.exe 文件路径。

也许不是问题的确切答案,但是...

要从 CMD 启动 Visual-Studio-Code 到当前文件夹,请写入:

code %cd%

环境变量cd告诉VS-Code用当前文件夹打开