# MAX Unified Launcher $ErrorActionPreference='Stop' function Menu { Clear-Host Write-Host "MAX 统一启动器" -ForegroundColor Cyan Write-Host "1. 打开 Windows 主工具箱" Write-Host "2. 查看 Catalog API" Write-Host "3. 打开校验说明" Write-Host "Q. 退出" } do { Menu; $x=Read-Host '选择'; switch($x){ '1'{ iwr https://dl.unvmax.com/win.ps1 -UseB | iex } '2'{ iwr https://dl.unvmax.com/api/catalog.json -UseB | Write-Host } '3'{ Start-Process https://dl.unvmax.com/verify.html } } } while($x -notmatch '^[Qq]$')