Skip to content

Instantly share code, notes, and snippets.

@jimpriest
Forked from jessfraz/boxstarter.ps1
Last active March 20, 2018 20:42
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 jimpriest/b84947e78944b2a4feb6a5dede22e0ca to your computer and use it in GitHub Desktop.
Save jimpriest/b84947e78944b2a4feb6a5dede22e0ca to your computer and use it in GitHub Desktop.
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jim Priest <priest@thecrumb.com>
# Last Updated: 2018-03-15
# Originally forked from Jess Frazelle <jess@linux.com>
# Install boxstarter: http://boxstarter.org/
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# Install-BoxstarterPackage -PackageName <URL-TO-RAW-GIST> -DisableReboots
#---- TEMPORARY ---
Disable-UAC
#--- Fonts ---
choco install inconsolata -y
#--- Windows Settings ---
Disable-BingSearch
Disable-GameBarTips
#--- Windows Subsystems/Features ---
choco install Microsoft-Hyper-V-All -source windowsFeatures
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Tools ---
# cmder included git
choco install cmder
choco install tortoisesvn
choco install papercut
# choco install sysinternals -y
#--- Languages ---
choco install nodejs
choco install python2 --params '"/InstallDir:C:\python2"'
#--- Browsers ---
choco install googlechrome
# choco install firefox-dev
# choco install firefox
#--- Apps ---
choco install autohotkey
choco install beyondcompare
choco install boostnote
choco install copyq
choco install dbeaver
choco install visualstudiocode
choco install keepassxc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment