使用 winget 安装管理 windows 软件 - Win10 LTSC
0 Winget官网
Winget官网: https://github.com/microsoft/winget-cli
1. 安装 winget (Win10 LTSC)
目前官方只支持 windows store 安装,但 LTSC 并没有应用商店。
1 | 版本 Windows 10 企业版 LTSC |
Win10 手动安装 winget 方法如下:
1.1 安装 VC++ v14 依赖
下载、安装 appx:
1
2
3cd ~
aria2c -c -s 5 -x 5 https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx # 注意版本号
Add-AppxPackage Microsoft.VCLibs.x64.14.00.Desktop.appx
1.2 安装 Microsoft.UI.Xaml 依赖
下载、解压、安装 appx:
1
2
3
4
5
6cd ~
aria2c -c -s 5 -x 5 https://www.nuget.org/api/v2/package/Microsoft.UI.Xaml/2.7.1 # 注意版本号
# 下载的文件: microsoft.ui.xaml.2.7.1.nupkg,解压
7z x microsoft.ui.xaml.2.7.1.nupkg -o*
cd microsoft.ui.xaml.2.7.1\tools\AppX\x64\Release
Add-AppxPackage microsoft.ui.xaml.2.7.appx
1.3 安装 winget
- 下载页面:https://github.com/microsoft/winget-cli/releases
- 下载、安装 msixbundle
1
2
3
4
5
6
7
8cd ~
aria2c -c -s 5 -x 5 https://github.com/microsoft/winget-cli/releases/download/v1.2.10271/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle # 注意版本号
# aria2c -c -s 5 -x 5 https://ghproxy.net/https://github.com/microsoft/winget-cli/releases/download/v1.2.10271/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Add-AppPackage .\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
.\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
2. 安装常用软件
1 |
|