从 powershell 提示符启动 vscode 脚本

Posted

技术标签:

【中文标题】从 powershell 提示符启动 vscode 脚本【英文标题】:launch vscode script from powershell prompt 【发布时间】:2022-01-17 08:06:22 【问题描述】:

Attempted to use the commands as suggested by others in the comment, no results or change.我已从 CommandPrompt 切换到 Powershell,并希望使用我在命令提示符中使用的相同命令来打开我在 VSCode 中处理的文件,即: code . 在 Powershell 中,这不会启动 VSCode 或真正做任何值得注意的事情。会喜欢一些见解。谢谢。

【问题讨论】:

code . 在 PowerShell 中的工作方式与在 cmd.exe 中的工作方式相同。 Get-Command code -All 报告什么?如果有多个结果,则第一个是有效的。 您好,感谢您的回复。我运行了Get-Command code -All 行,然后返回code.cmdcode。我尝试了第一个命令,没有任何反应。 VSCode 没有启动。 code.cmdcode 都可以,可以附上截图吗? 【参考方案1】:

试试下面的。这将打开您触发 powershell 的当前文件夹。

Start-Process code . 

正如@Steven 已经提到的,它也应该通过在你的 powershell 输入上键入 code 来工作。

【讨论】:

我已经尝试了所有这三个建议,但均无济于事。输入任何这些命令后,VSCode 都不会启动。我想在这一点上提一下我必须从 CommandPrompt 切换到 Powershell 会很有帮助,因为 CommandPrompt 将不再在我的笔记本电脑上启动。

以上是关于从 powershell 提示符启动 vscode 脚本的主要内容,如果未能解决你的问题,请参考以下文章

VSCode 突然默认为集成终端和任务的 powershell

从 Azure DevOps 管道启动适用于 VS 2019 的开发人员 PowerShell

[环境配置][转载]Vscode将默认终端从PowerShell改成cmd

怎样启动powershell

如何使用 PowerShell 启动/停止远程服务器上的服务 - Windows 2008 并提示输入凭据?

VScode无法启动问题解决思路