Batch install with winget import
One copy-paste, no manual download. The command below pulls topic-code-editors-ides.packages.json from winpkg.com and runs winget import on it. Best for moving an app set between machines.
$f = "$env:TEMP\topic-code-editors-ides.packages.json"; Invoke-WebRequest -UseBasicParsing -Uri "https://winpkg.com/topics/code-editors-ides/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-code-editors-ides.packages.json