该系统找不到在开发人员命令提示中指定的文件,vs 2022

发布于 2025-01-20 08:10:34 字数 1059 浏览 0 评论 0原文

运行 VS 2022 的开发人员命令提示符

以前,我没有收到此错误。

尝试使用管理员修改快捷方式启动器后,会发生此错误。回滚启动器的路径和命令,保留此错误。

**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.1.3
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
The system cannot find the file specified.
C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools>

如何解决这个问题?


我已阅读此 SO 答案,但就我而言,已经没有 AutoRun


从cmd打开.bat文件也不起作用。

PS C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools> VsDevCmd.bat
**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.1.3
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
The system cannot find the file specified.

Running Developer Command Prompt for VS 2022

Previously, I didn't get this error.

After try some attempt modifying the shortcut launcher using administrator, this error happens. Roll back the path and command for the launcher, keeps this error.

**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.1.3
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
The system cannot find the file specified.
C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools>

How to fix this?


I've read this SO Answer but, in my case, there is already no AutoRun.


Open the .bat file from cmd also did not work.

PS C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools> VsDevCmd.bat
**********************************************************************
** Visual Studio 2022 Developer Command Prompt v17.1.3
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
The system cannot find the file specified.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

儭儭莪哋寶赑 2025-01-27 08:10:34

修改修复来自Visual Studio构建工具解决问题。

确保在此处显示一些可选下载: ”在此处输入映像说明“ (如果您不能打开Imgur,则是 image )。

请参阅此vscode教程 page 在安装Visual Studio构建工具上。

Modify and Repair from Visual Studio Build Tools solve the problem.

Make sure to check some optional download shown here:enter image description here(if you can't open imgur, here is the image).

See this VSCode tutorial page on installing Visual Studio Build Tools.

在风中等你 2025-01-27 08:10:34

我发现安装 Visual Studio Community 2022 选择以下软件包可以修复此问题:

  • w10 sdk
  • 通用 Windows 平台工具

他们还尝试硬塞他们的 Windows Copilot...但您可以禁用该软件包。

I found that installing the Visual Studio Community 2022 selecting the following packages fixes it:

  • w10 sdk
  • universal windows platform tools

They also try to shoehorn their Windows Copilot... but you can disable that package.

东走西顾 2025-01-27 08:10:34

我认为op启动了vs Build Tools 2022的正确文件。

正确的文件将是auginder-vsdevshell.ps1

C:\Users\Administrator> & 'C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\Launch-VsDevShell.ps1'
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.5.4
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
C:\Users\Administrator>

上面的控制台来自我的Windows 2022服务器,其中安装了VS Build Tools 2022。

另外,请注意,您也可以使用此官方的PowerShell模块从Microsoft中找到来自Microsoft的 VS构建工具:

C:\Users\Administrator> $buildToolsHome = Get-VSSetupInstance | Select -ExpandProperty InstallationPath
C:\Users\Administrator> & "${buildToolsHome}\Common7\Tools\Launch-VsDevShell.ps1"
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.5.4
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
C:\Users\Administrator>

I don't think OP launched the correct file for VS Build Tools 2022.

The correct one would be Launch-VsDevShell.ps1:

C:\Users\Administrator> & 'C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\Launch-VsDevShell.ps1'
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.5.4
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
C:\Users\Administrator>

The console above is from my Windows 2022 server with VS Build Tools 2022 installed.

Also, observe that you can also use this official PowerShell module from Microsoft to find the installation directory of the VS Build Tools:

C:\Users\Administrator> $buildToolsHome = Get-VSSetupInstance | Select -ExpandProperty InstallationPath
C:\Users\Administrator> & "${buildToolsHome}\Common7\Tools\Launch-VsDevShell.ps1"
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.5.4
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
C:\Users\Administrator>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文