Skip to content

Instantly share code, notes, and snippets.

@tsubakimoto
Last active August 7, 2022 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubakimoto/d336a2a2ffc871bbed1bb7830568d6b8 to your computer and use it in GitHub Desktop.
Save tsubakimoto/d336a2a2ffc871bbed1bb7830568d6b8 to your computer and use it in GitHub Desktop.
Setup using Chocolatey https://chocolatey.org/

Chocolatey Software | Chocolatey - The package manager for Windows

Full

cd ~
Set-ExecutionPolicy Bypass; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
wget https://gist.github.com/tsubakimoto/d336a2a2ffc871bbed1bb7830568d6b8/raw/37130de57d6bb260dea6d581bde884fd59a8f14d/package-full.config -OutFile package-full.config
choco install -y package-full.config

Light

cd ~
Set-ExecutionPolicy Bypass; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
wget https://gist.github.com/tsubakimoto/d336a2a2ffc871bbed1bb7830568d6b8/raw/37130de57d6bb260dea6d581bde884fd59a8f14d/package-light.config -OutFile package-light.config
choco install -y package-light.config
<?xml version="1.0" encoding="utf-8"?>
<packages>
<!-- fonts -->
<package id="sourcecodepro" />
<!-- git -->
<package id="git" />
<package id="git-credential-manager-for-windows" />
<!-- package id="gitkraken" / -->
<!-- language -->
<package id="nvm" />
<!-- development -->
<package id="visualstudiocode" />
<!-- package id="visualstudio2019enterprise" / -->
<package id="visualstudio2022enterprise" />
<package id="azure-data-studio" />
<package id="azure-cli" />
<package id="microsoftazurestorageexplorer" />
<!-- package id="azurestorageemulator" / -->
<package id="azure-cosmosdb-emulator" />
<!-- package id="azure-functions-core-tools-3" /> -->
<package id="docker-for-windows" />
<package id="linqpad5.install" />
<package id="screenpresso" />
<!-- package id="sql-server-management-studio" / -->
<package id="postman" />
<!-- browser -->
<!-- package id="firefox" / -->
<package id="googlechrome" />
<!-- communication -->
<package id="slack" />
<package id="discord" />
<!-- tool -->
<package id="googlejapaneseinput" />
<package id="powertoys" />
<package id="devtoys" />
<package id="keeweb" />
<package id="1password" />
<package id="deepl" />
<package id="obs-studio" />
<package id="xmind" />
</packages>
<?xml version="1.0" encoding="utf-8"?>
<packages>
<!-- fonts -->
<package id="sourcecodepro" />
<!-- git -->
<package id="git" />
<package id="git-credential-manager-for-windows" />
<!-- development -->
<package id="visualstudiocode" />
<package id="postman" />
<!-- browser -->
<package id="googlechrome" />
<!-- communication -->
<package id="slack" />
<package id="discord" />
<!-- tool -->
<package id="googlejapaneseinput" />
<package id="powertoys" />
<package id="devtoys" />
<package id="keeweb" />
<package id="1password" />
<package id="deepl" />
<package id="obs-studio" />
<package id="xmind" />
</packages>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment