All checks were successful
Build SilverMetal Enhanced - Windows ISO / build (pull_request) Successful in 6m36s
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
6 lines
325 B
PowerShell
6 lines
325 B
PowerShell
#Requires -Version 5.1
|
|
$ErrorActionPreference='SilentlyContinue'
|
|
# Register the inbox App Installer if present, else nothing to do (offline image w/o it).
|
|
Get-AppxPackage -AllUsers Microsoft.DesktopAppInstaller |
|
|
ForEach-Object { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" }
|