0

我正在尝试在 Windows Server 2019(标准版,版本 1809,内部版本 17763)上安装 WinGet,但无法正常工作...

尝试此博客文章中的“直接安装”链接时,我得到以下链接ms-appinstaller:?source=https://aka.ms/getwinget,我的浏览器无法理解该链接,因为我没有应用安装程序。

所以我Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle从同一篇博文中提到的 GitHub 发布页面下载了这个(应该包含 App Installer 和 WinGet)。因为我的系统没有获得 .appxbundle 文件,所以我尝试使用 Powershell 安装它:

Add-AppxPackage ".\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle"

但它抱怨它错过了Microsoft.VCLibs.140.00.UWPDesktop

Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF3, Package failed updates, 
dependency or conflict validation.
Windows cannot install package Microsoft.DesktopAppInstaller_1.11.11451.0_x64__8wekyb3d8bbwe 
because this package depends on a framework that could not be found. Provide the framework 
"Microsoft.VCLibs.140.00.UWPDesktop" published by "CN=Microsoft Corporation, O=Microsoft 
Corporation, L=Redmond, S=Washington, C=US", with neutral or x64 processor architecture and 
minimum version 14.0.29231.0, along with this package to install. The frameworks with name
"Microsoft.VCLibs.140.00.UWPDesktop" currently installed

显然,这是一个“桌面桥的 C++ 运行时框架包”,也可以作为 appx 下载;首先安装它,然后安装 DesktopAppInstaller/WinGet 包没有错误:

Add-AppxPackage ".\Microsoft.VCLibs.x64.14.00.Desktop.appx"
Add-AppxPackage ".\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle"

但是,此时我似乎有 App Installer(因为它现在可以识别 .appx/.appxbundle 文件),但没有 WinGet 客户端,因为当我从命令提示符运行它时,它会告诉我:

'winget' is not recognized as an internal or external command, operable program or batch file.

如何让 WinGet 在 Windows Server 2019 机器上运行?

4

1 回答 1

1

不支持 Windows Server 2019 和 Windows Server 2022。可能可以安装 Windows 包管理器,但这些 SKU 中不包含依赖项。

https://github.com/microsoft/winget-cli/issues/754#issuecomment-902798802

于 2021-10-07T14:30:44.043 回答