Last active
July 2, 2021 06:08
-
-
Save codemonkeh/635b41bf31414724db72b61ff6e288b3 to your computer and use it in GitHub Desktop.
Chocolatey install
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://chocolatey.org/install.ps1')) | |
# General | |
choco install ConEmu notepadplusplus 7zip MardownMonster filezilla foxitreader -y | |
# Hardware (beast) | |
choco install icue -y | |
# Dev tools | |
choco install git poshgit dotnetcore-sdk awscli nodejs vscode linqpad pgadmin4 -y | |
# choco commands | |
choco search <name> | |
choco search <name> -e | |
choco search <name> -e --detail | |
choco install <name, name2, ...> -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment