Skip to content

Instantly share code, notes, and snippets.

@tylerlindell
Last active October 2, 2017 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tylerlindell/466e6794ab789d9236aee9d404ab1255 to your computer and use it in GitHub Desktop.
Save tylerlindell/466e6794ab789d9236aee9d404ab1255 to your computer and use it in GitHub Desktop.
echo off
title Install Development Environment Applications
echo installing chocolatey
:: chocolatey
Set-ExecutionPolicy Bypass; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
:: Node.js
echo installing Node.js
choco install nodejs.install
:: vscode
echo installing vscode
choco install visualstudiocode
:: visual studio
echo installing visual studio
choco install visualstudio2017community
:: chrome
echo installing chrome
choco install googlechrome
:: git
echo installing git
choco install git.install
:: cygwin
echo installing cygwin
choco install cygwin
:: slack
echo installing slack
choco install slack
:: teamviewer
echo installing teamviewer
choco install teamviewer
:: mattermost
echo installing mattermost
choco install mattermost-desktop
:: LICEcap (gif)
echo installing LICEcap (gif)
choco install licecap
:: unity
echo installing unity
choco install unity
:: mysql workbench
echo installing mysql workbench
choco install mysql.workbench
:: p4merge
echo installing p4merge
choco install p4merge
:::::::::::::::::::::::::::::::::
:: node modules ::
:::::::::::::::::::::::::::::::::
:: angular cli
echo installing angular cli
npm install -g @angular/cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment