-
-
Save kfalconspb/ca8730e60e4008c2b78d0935edb5fd9f to your computer and use it in GitHub Desktop.
Boxstarter Commands for a new Windows box.
This file contains hidden or 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]> | |
| # 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 | |
| #--- Restore Temporary Settings --- | |
| Enable-UAC | |
| Enable-MicrosoftUpdate | |
| Install-WindowsUpdate -acceptEula | |
| #--- Rename the Computer --- | |
| # Requires restart, or add the -Restart flag | |
| $computername = "acidburn" | |
| if ($env:computername -ne $computername) { | |
| Rename-Computer -NewName $computername | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment