We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Windows Sandbox it throw error that winget isn't installed. Code below solve this issue:
$ProgressPreference = 'silentlycontinue' "Installing WinGet Dependencies" "`t-VCLib" Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' -ErrorAction SilentlyContinue "`t-UI.Xaml" Invoke-WebRequest "https://www.nuget.org/api/v2/package/Microsoft.UI.Xaml/2.7.1" -UseBasicParsing -OutFile "$env:TEMP\UI.xaml.zip" Expand-Archive "$env:TEMP\UI.xaml.zip" -DestinationPath "$env:TEMP\UI.xaml" -Force Add-AppxPackage -Path "$env:TEMP\UI.xaml\tools\AppX\x64\Release\Microsoft.UI.Xaml.2.7.appx" -ErrorAction SilentlyContinue "Downloading WinGet" Invoke-WebRequest "https://aka.ms/getwinget" -UseBasicParsing -OutFile "$env:TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" #Install WinGet MSIXBundle Try { Write-Host "Installing MSIXBundle for App Installer..." Add-AppxProvisionedPackage -Online -PackagePath "$env:TEMP\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle" -SkipLicense Write-Host "Installed MSIXBundle for App Installer" -ForegroundColor Green } Catch { Write-Host "Failed to install MSIXBundle for App Installer..." -ForegroundColor Red }
The text was updated successfully, but these errors were encountered:
We need to update the tool with latest changes we made in WAU.
Sorry, something went wrong.
feel free to implement to get credited ;)
No branches or pull requests
In Windows Sandbox it throw error that winget isn't installed. Code below solve this issue:
The text was updated successfully, but these errors were encountered: