Visual Studio 2017 安装程序无法安装 KB2533623

Visual Studio 2017 installer fails to install KB2533623

我正在尝试通过网络安装程序在我的 Windows 7 笔记本电脑上安装 Visual Studio 2017 Community,但它失败了,返回给我这个日志:

dd_setup_..._error.log(由我翻译成英语,因为它是德语)

Package "WindowsUpdates.KB2533623,version=15.0.26711.1,chip=x64" could not be installed.
    Search-URL
        https://aka.ms/VSSetupErrorReports?q=PackageId=WindowsUpdates.KB2533623;PackageAction=Install;ReturnCode=1168
    Details
        Command executed: "C:\Windows\system32\dism.exe" /online /quiet /norestart /add-package /packagepath:"C:\Users\User\AppData\Local\Temp2b07d7-22c4-4fb6-8bd8-78e9e210c711\Windows6.1-KB2533623-x64.cab" /logPath:"C:\Users\User\AppData\Local\Temp\dd_setup_20170916213606_141_WindowsUpdates.KB2533623.log"
        Code returned: 1168
        Codedetails returned: Element not found.

KB2533623 没有安装在我的笔记本电脑上,所以我尝试自己安装 KB2533623 x64,但它拒绝 "The update is not applicable to your computer"。

经过一些研究,我发现 SCCMENTOR 声称 KB2533623 is superseded by KB2758857, so I tried to uninstall KB2758857, first. There was an error that I could not uninstall all updates. Repeating the step in a local system CMD with wusa /uninstall /kb:2758857 returned 0x80070490. Microsoft suggests to scan the system for corrupt files with sfc /scannow,所以我就这样做了。它发现了一些错误并修复了它们。

我重复了wusa /uninstall /kb:2758857,它返回了0x80070bc9。然后我重新启动并再次尝试,它再次给了我 0x80070490。

我不确定我走的路是否正确,也许 KB2533623 不是这里的问题。我该如何解决这个问题,让 Visual Studio 安装程序能够安装套件中这么多组件所需的 KB2533623?如果 KB2533623 真的被 KB2758857 取代,如果我的笔记本电脑上已经安装了 KB2758857,为什么安装程序会尝试安装 KB2533623?

大家好!

我遇到了同样的问题,我发现 KB2533623 已被 KB2758857 取代。 我检查我的 PC 中是否安装了此更新。你可以检查它 运行 这个命令:

wmic qfe 列表 |找到“2758857”

如果已安装,将显示如下内容:

http://support.microsoft.com/?kbid=2758857 MyMachine 安全更新 KB2758857 AUTORIDADE NT\SISTEMA 9/2/2016

所以,我用这个命令删除了它:

wusa /uninstall /kb:2758857

之后我可以成功安装 visual studio 2017.

希望对你有所帮助

Microsoft 在 Visual Studio 2017 15.5 Preview 3

中修复了它

所以请等待 Visual Studio 2017 版 15.5 的最终版本并使用更新后的安装程序。