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
  • Select an option

  • Save jimpriest/b84947e78944b2a4feb6a5dede22e0ca to your computer and use it in GitHub Desktop.

Select an option

Save jimpriest/b84947e78944b2a4feb6a5dede22e0ca to your computer and use it in GitHub Desktop.
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
# OR
# Install-BoxstarterPackage -PackageName <URL-TO-RAW-GIST> -DisableReboots
#
# Learn more: http://boxstarter.org/Learn/WebLauncher
#---- 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 ---
# choco install git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"' -y
# choco install poshgit
# choco install sysinternals -y
# choco install vim
#--- Apps ---
choco install googlechrome
choco install firefox-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment