-
-
Save Caldazar87/380d2a5253ccc6257456be04cb6edb54 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 choco .exe and add choco to PATH | |
:: https://chocolatey.org/install | |
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" | |
:: Install all the packages | |
:: choose: visual studio, office, .net core, .net, rider tools | |
:: Dev tools | |
choco install python -y | |
choco install git.install -y | |
choco install gitkraken -y | |
choco install vscode -y | |
choco install jre8 -y | |
choco install jdk8 -y | |
choco install mysql -y | |
choco install postman -y | |
choco install jetbrainstoolbox -y | |
choco install awscli -y | |
choco install docker-desktop -y | |
:: Utilities | |
choco install googlechrome -y | |
choco install firefox -y | |
choco install 7zip.install -y | |
choco install teamviewer -y | |
choco install putty.install -y | |
choco install curl -y | |
choco install malwarebytes -y | |
choco install citrix-receiver -y | |
choco install virtualbox -y | |
:: Communication | |
choco install slack -y | |
choco install zoom -y | |
choco install viber -y | |
choco install skype -y | |
choco install telegram.install -y | |
choco install webex -y | |
:: Other | |
choco install vlc -y | |
choco install evernote -y | |
choco install doublecmd -y | |
choco install paint.net -y | |
choco install grammarly -y | |
choco install adobereader -y | |
choco install calibre -y | |
:: python set-up and aws | |
python -m pip install --upgrade pip | |
pip install ipython --upgrade | |
pip install cfn-lint --upgrade | |
pip install aws-sam-cli --upgrade | |
pip install pytest --upgrade | |
pip install pyYAML --upgrade | |
pip install boto3 --upgrade | |
pip install cryptography --upgrade | |
pip install flask --upgrade | |
:: DotNet | |
choco install dotnetfx -y | |
choco install dotnetcore-sdk -y | |
choco install iisexpress -y | |
choco install visualstudio2019community -y | |
:: VS Code extensions | |
code --install-extension aws-scripting-guy.cform | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension eamodio.gitlens | |
code --install-extension eastman.vscode-cfn-nag | |
code --install-extension fernandoescolar.vscode-solution-explorer | |
code --install-extension GrapeCity.gc-excelviewer | |
code --install-extension Gruntfuggly.todo-tree | |
code --install-extension hashicorp.terraform | |
code --install-extension humao.rest-client | |
code --install-extension kddejong.vscode-cfn-lint | |
code --install-extension mark-tucker.aws-cli-configure | |
code --install-extension mohsen1.prettify-json | |
code --install-extension ms-azuretools.vscode-docker | |
code --install-extension ms-dotnettools.csharp | |
code --install-extension ms-python.python | |
code --install-extension ms-python.vscode-pylance | |
code --install-extension ms-vscode.powershell | |
code --install-extension PlethoraOfHate.aws-actions | |
code --install-extension quicktype.quicktype | |
code --install-extension redhat.vscode-commons | |
code --install-extension redhat.vscode-yaml | |
code --install-extension salbert.copy-text | |
code --install-extension slevesque.vscode-hexdump | |
code --install-extension ThreadHeap.serverless-ide-vscode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment