Last active
June 4, 2019 11:00
-
-
Save julien731/f3fbbf378137f0393e352e2e56f02198 to your computer and use it in GitHub Desktop.
Laptop Setup Script (Chocolatey)
This file contains 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
ECHO Installing Apps | |
ECHO Configure Chocolatey | |
choco feature enable -n allowGlobalConfirmation | |
# System Apps | |
## Browsers | |
choco install googlechrome | |
choco install firefox | |
## Misc | |
choco install keepassxc | |
choco install 7zip | |
choco install deluge | |
## Work | |
choco install libreoffice | |
choco install adobereader | |
# Dev Apps | |
choco install php | |
choco install composer | |
choco install virtualbox | |
choco install vagrant | |
choco install visualstudiocode | |
choco install phpstorm | |
choco install bitvise-ssh-client | |
## Vagrant Plugins | |
refreshenv # Refresh the env. variables to access vagrant | |
vagrant plugin install vagrant-hostsupdater | |
## Git | |
choco install git | |
choco install gitkraken | |
choco install smartgit | |
# Games | |
choco install steam | |
choco feature disable -n allowGlobalConfirmation | |
# Customize PowerShell | |
## Install Scoop | |
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
## Install concfg and import the Solarized theme | |
scoop install concfg | |
concfg import solarized | |
## Install Pshazz | |
scoop install pshazz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment