Last active
May 28, 2025 12:11
-
-
Save msh31/a0b8d4ffbff5cf2bdafcb312c36774a1 to your computer and use it in GitHub Desktop.
Chocolately dev packages installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <packages> | |
| <package id="dbeaver"/> | |
| <package id="jetbrains-rider"/> | |
| <package id="webstorm"/> | |
| <package id="git"/> | |
| <package id="github-desktop"/> | |
| <package id="nodejs"/> | |
| <package id="dotnet"/> | |
| <package id="composer"/> | |
| </packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
| choco install devpkg.config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment