Old Games

A small featured collection of some of my previous games. The most notable one being I Wanna Be The Boshy, which kickstarted all of Grynsoft. Its popularity brought Grynsoft's first original game Wings of Vi into the limelight.

Msix Silent Install -

powershell -ExecutionPolicy Bypass -File "install-app.ps1" -PackagePath "C:\Temp\app.msix" | Problem | Solution | |---------|----------| | "Deployment failed because app license not found" | Use -SkipLicense with Add-AppxProvisionedPackage | | "App already installed for this user" | Run Remove-AppxPackage first | | "Missing dependencies" | Install framework packages (e.g., VCLibs, UI.Xaml) first | | "Silent install still shows a progress bar? | That’s normal – it’s not interactive, just visual. No user input required. | Pro Tip: Install from a URL (without downloading manually) $url = "https://cdn.example.com/app.msix" $out = "$env:TEMP\app.msix" Invoke-WebRequest -Uri $url -OutFile $out Add-AppxPackage -Path $out Remove-Item $out MSIX vs EXE/MSI Silent Install | Feature | MSIX | EXE / MSI | |---------|------|-----------| | Standard silent flag | -Path (PowerShell) | /quiet or /S | | User context | Works per-user or machine | Usually machine only | | Cleanup after uninstall | Fully containerized | Often leaves leftovers | Final Takeaway MSIX silent install is trivial – one PowerShell command. The real work is managing certificates, dependencies, and user vs. machine scope.

Published by: SysAdmin Tips Read time: 4 minutes msix silent install

Add-AppxProvisionedPackage -Online -FolderPath "C:\Downloads\MyApp" -SkipLicense Save as install-app.ps1 : powershell -ExecutionPolicy Bypass -File "install-app

MSIX is the future of Windows app packaging. It’s clean, containerized, and secure. But if you manage dozens or hundreds of machines, you don’t want a wizard popping up asking for clicks. You want silent. | Pro Tip: Install from a URL (without

Run it:

try Write-Host "Silently installing $PackagePath ..." Add-AppxPackage -Path $PackagePath -ForceApplicationShutdown -ErrorAction Stop Write-Host "Installation succeeded." -ForegroundColor Green