Last active
January 3, 2020 04:23
-
-
Save timcunningham/24a1328533bc09a141d549d0fff4f15b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Modified: Tim Cunningham <[email protected]> | |
# 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