“choco install Visualstudio2017-workload-vctools”失败错误:安装 Visualstudio2017-workload-vctools 未成功

问题描述 投票:0回答:5
C:\WINDOWS\system32>choco install visualstudio2017-workload-vctools
Chocolatey v0.10.15
Installing the following packages:
visualstudio2017-workload-vctools
By installing you accept licenses for the packages.
Progress: Downloading visualstudio2017-workload-vctools 1.3.2... 100%

visualstudio2017-workload-vctools v1.3.2 [Approved]
visualstudio2017-workload-vctools package files install completed. Performing other installation steps.
The package visualstudio2017-workload-vctools wants to run 'ChocolateyInstall.ps1'.
Note: If you don't run this script, the installation will fail.
Note: To confirm automatically next time, use '-y' or consider:
choco feature enable -n allowGlobalConfirmation
Do you want to run the script?([Y]es/[A]ll - yes to all/[N]o/[P]rint): a

ERROR: Unable to detect any supported Visual Studio product. You may try passing --installPath or both --productId and --channelId parameters.
The install of visualstudio2017-workload-vctools was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\visualstudio2017-workload-vctools\tools\ChocolateyInstall.ps1'.
 See log for details.

Chocolatey installed 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures
 - visualstudio2017-workload-vctools (exited -1) - Error while running 'C:\ProgramData\chocolatey\lib\visualstudio2017-workload-vctools\tools\ChocolateyInstall.ps1'.
 See log for details.
node.js npm installation visual-studio-2017 choco
5个回答
9
投票

使用

choco upgrade -y visualstudio2019-workload-vctools


6
投票

您的 Visualstudio 安装程序似乎已过时。

尝试升级安装程序

“C:\Program Files (x86)\Microsoft Visual Studio\Installer s_installer.exe”

然后(作为管理员)

choco升级-y Visualstudio2017-workload-vctools


4
投票

尝试使用“以管理员身份运行”打开 CMD 或 PowerShell 并运行

choco upgrade -y visualstudio2019-workload-vctools

这解决了我的问题。


2
投票

正如其他人所建议的,运行这个命令解决了它......至少对我来说:

choco upgrade -y visualstudio2019-workload-vctools

我要添加一件事,您可能需要在执行此操作时关闭并打开 PowerShell。


0
投票

您必须更改命令中的年份以匹配安装的操作系统版本。就我而言,我使用:

choco upgrade -y visualstudio2022-workload-vctools

© www.soinside.com 2019 - 2024. All rights reserved.