Setup for VS Code
github.com/Tensionix/setup-for-vs-code ↗Builds of this project: versions, files and checksums.
Portable and self-updating: plugins are installed by your own choice in a single press, and their IDs are all you need. It installs a fresh build with every option of the wizard and configures it right away — no questions about trusting folders. The portable copy is assembled separately: with Claude and Codex, with all four agents, or with none at all. A portable VS Code does not update itself, by the developers' decision: an update would replace the folder along with the settings. Here a separate command does it — it changes the program and leaves the data alone.
2 downloads from GitHubA description will arrive with the next build.
Versions
1.0.1
Installation
The program is portable: the unpacked folder is the installed program. Nothing is written to the registry; to uninstall, delete the folder.
$name = "Audion_Setup_for_VS_Code_v1.0.1_Full.zip"
Invoke-WebRequest "https://audion.dev/get/setup-for-vs-code/1.0.1/Audion_Setup_for_VS_Code_v1.0.1_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/setup-for-vs-code/1.0.1/Audion_Setup_for_VS_Code_v1.0.1_Full.zip.sha256" -OutFile "$name.sha256"
$want = (Get-Content "$name.sha256").Split(" ")[0]
$have = (Get-FileHash $name -Algorithm SHA256).Hash.ToLower()
if ($want -ne $have) { throw "checksum mismatch: the download is corrupt" }
Expand-Archive $name -DestinationPath ".\setup-for-vs-code"