New dev/ machine- need setup? Install Chocolatey and then Choco install. This script was designed for students and professionals setting up a new development environment.
Details
IDEs
- Visual Studio Code
- Notepad Plus Plus
- Atom
- Submlime Text
- Brackets
Frameworks
- dotnet Core SDK
SQL
- SQL Server Management Studio
- MySQL Workbench
Utilities
- AWS CLI
- Azure CLI
- GIT CLI
- cURL
- NodeJS
- yarn
- terraform
Tools
- Postman
- Fiddler
- Beyond Compare
- cmder
- Omnisharp for VS Code
Programs
- 7 Zip
- FileZilla
- SourceTree
- Slack
Browsers
- Google Chrome
- FireFox
How to run Powershell as Adminsitrator?
- Open Start Menu
- Search for Powershell
- Right Click on Powershell
- Left Click 'Run as Administrator
Executeing this command in powershell with 'Admin' privlidges will install Chocolatey Package Manager.
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'))Executeing this command in powershell with 'Admin' privlidges will install all of the software documented in the Chocolatey Machine Setup Powershell script.
iex ((new-object net.webClient).DownloadString('https://raw.githubusercontent.com/dvdmrk/GreenDevMachineConfig/master/chocolatey-machine-setup.ps1'))