Skip to content

Instantly share code, notes, and snippets.

@HauptJ
Last active January 4, 2018 23:36
Show Gist options
  • Save HauptJ/7afed63d33d65c2a84ad2b3ff3ae9dea to your computer and use it in GitHub Desktop.
Save HauptJ/7afed63d33d65c2a84ad2b3ff3ae9dea to your computer and use it in GitHub Desktop.
Installs browsers, dev tools, and entertainment
############################################################
# Powershell provision personal Windows 10 environment
# Installs browsers, dev tools, and entertainment
# Script 2
# Author: Joshua Haupt josh@hauptj.com Date: 25.12.2017
############################################################
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install googlechrome -y
choco install https-everywhere-chrome -y
choco install google-hangouts-chrome -y
choco install firefox -y
choco install git -y
choco install atom -y
choco install notepadplusplus -y
choco install miktex -y
choco install texstudio -y
choco install hexchat -y
choco install skype -y
choco install steam -y
choco install k-litecodecpackmega -y
choco install geforce-experience -y
# Install the entire Hyper-V stack (hypervisor, services, and tools)
# Source: https://www.altaro.com/hyper-v/install-hyper-v-powershell-module/
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
# Reboot Required before running script 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment