-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
Can you provide the output of |
Beta Was this translation helpful? Give feedback.
-
You could try: $progressPreference = 'silentlyContinue'
Write-Information "Downloading WinGet and its dependencies..."
Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile Microsoft.VCLibs.x64.14.00.Desktop.appx
Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx -OutFile Microsoft.UI.Xaml.2.8.x64.appx
Add-AppxPackage Microsoft.VCLibs.x64.14.00.Desktop.appx
Add-AppxPackage Microsoft.UI.Xaml.2.8.x64.appx
Add-AppxPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle |
Beta Was this translation helpful? Give feedback.
-
holy, I just fix it.It's a cert* problem.
参考地址 ref: https://blog.csdn.net/bobodadao/article/details/131855508 |
Beta Was this translation helpful? Give feedback.
holy, I just fix it.It's a cert* problem.
use three commands:
参考地址 ref: https://blog.csdn.net/bobodadao/article/details/131855508