Skip to content

Instantly share code, notes, and snippets.

@timcunningham
Last active January 3, 2020 04:23
Show Gist options
  • Save timcunningham/24a1328533bc09a141d549d0fff4f15b to your computer and use it in GitHub Desktop.
Save timcunningham/24a1328533bc09a141d549d0fff4f15b to your computer and use it in GitHub Desktop.
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Modified: Tim Cunningham <timcunningham71@gmail.com>
# Last Updated: 2020-01-02
#
# 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
Set-TimeZone -Name "Eastern Standard Time" -Verbose
#--- Apps ---
choco install git -y
choco install googlechrome -y
choco upgrade conemu -y
choco install jre8 -y
choco install commandbox -
#--- Windows Settings ---
Disable-GameBarTips
Enable-PSRemoting -SkipNetworkProfileCheck -Force
Update-Help
#--- Download windows preferences script and run forked from Disassembler0/Win10-Initial-Setup-Script ---
if(Test-Path "Win10-Initial-Setup-Script"){
Remove-Item -Recurse -Force Win10-Initial-Setup-Script
}
git clone https://github.com/timcunningham/Win10-Initial-Setup-Script.git
cd Win10-Initial-Setup-Script
.\Default.cmd
cd ..
Remove-Item -Recurse -Force Win10-Initial-Setup-Script
#--- Get Windows Updates
Install-WindowsUpdate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment