Batch install with winget import
One copy-paste, no manual download. The command below pulls topic-pc-gaming-and-launchers.packages.json from winpkg.com and runs winget import on it. Best for moving an app set between machines.
$f = "$env:TEMP\topic-pc-gaming-and-launchers.packages.json"; Invoke-WebRequest -UseBasicParsing -Uri "https://winpkg.com/topics/pc-gaming-and-launchers/packages.json" -OutFile $f; winget import -i $f Run in PowerShell. Saves to %TEMP% and runs winget on it.
Already downloaded the file? Use the short command
winget import -i topic-pc-gaming-and-launchers.packages.json