Created
February 25, 2023 14:15
-
-
Save fjrti/cfa0074af2169350e8ea174017c61b7e to your computer and use it in GitHub Desktop.
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
# install chocolatey | |
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')) | |
# install visual studio 2019 | |
choco install -y visualstudio2019community | |
choco install -y visualstudio2019buildtools | |
choco install -y visualstudio2019-workload-manageddesktop | |
choco install -y visualstudio2019-workload-vctools | |
# install rustup | |
choco install -y rustup.install | |
# install git | |
choco install -y git.install | |
# install nodejs | |
choco install -y nodejs | |
# install deno | |
choco install -y deno | |
# install vim | |
choco install -y vim | |
# install google chrome | |
choco install -y googlechrome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment