Skip to content

Instantly share code, notes, and snippets.

@The-Running-Dev
Created March 27, 2017 15:14
Show Gist options
  • Save The-Running-Dev/6a86a0335e8ddf08ab0cbceaa4d245d6 to your computer and use it in GitHub Desktop.
Save The-Running-Dev/6a86a0335e8ddf08ab0cbceaa4d245d6 to your computer and use it in GitHub Desktop.
# Install chocolatey
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
# Confgiure chocolatey defaults
choco config set commandExecutionTimeoutSeconds 14400
choco feature enable -n allowGlobalConfirmation
choco feature enable -n allowEmptyChecksums
# Add the Win-Boxstarter source to your local configurtion with top priority
# Then add the Chocolatey official feed at priority 2
choco source add -n=Win-BoxStarter -s https://www.myget.org/F/win-boxstarter/api/v2 -priority=1
choco source add -n=Chocolatey -s "https://chocolatey.org/api/v2/" -priority=2
# Install the Carbon module so you can modify your local hosts file
choco install Carbon
# Install applications
# Look for packages at the official Chocolatey feed at http://chocolatey.org/packages
# Or use MyGet feed at https://www.myget.org/F/win-boxstarter/api/v2
# List Packages at the MyGet feed with:
# choco list -s Win-BoxStarter
# List Packages at the Chocolatey feed (should return 4k+ packages)
# choco list -s Chocolatey
# Or more usuful is to search the Chocolatey feed
# choco search Notepad -s Chocolatey
# Install DotNET Core (form my feed since it's top priorotiy)
choco install DotNETCore.Runtime
choco install DotNETCore.SDK
# Install applications
choco install Dropbox
choco install F.Lux
choco install GitExtensions
choco install GoogleChrome
choco install JRE
choco install Launchy
choco install NodeJs
choco install Spotify
choco install TeamViewer
choco install VisualStudio2015Enterprise
choco install VisualStudioCode
choco install WebPI
choco install WebStorm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment