Skip to content

Instantly share code, notes, and snippets.

@mrb0nj
Last active December 21, 2018 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrb0nj/c3926f4434331b1b0b16ff91d96834ac to your computer and use it in GitHub Desktop.
Save mrb0nj/c3926f4434331b1b0b16ff91d96834ac to your computer and use it in GitHub Desktop.
# Description: Boxstarter Script
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
#---- TEMPORARY ---
Disable-UAC
#--- Windows subsystems/Features ---
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Enable-RemoteDesktop
choco install Microsoft-Hyper-V-All -source windowsFeatures -y
choco install Microsoft-Windows-Subsystem-Linux -source WindowsFeatures -y
#--- Tools ---
choco install 7Zip -y
choco install git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"' -y
choco install poshGIT -y
choco install Paint.net -y
choco install Sysinternals -y
choco install gitkraken -y
choco install etcher -y
#--- Alt Consoles ---
choco install hyper -y
#--- Browsers ---
choco install Googlechrome -y
#--- Install VS & Dev Tools ---
choco install putty.install -y
choco install nodejs -y
choco install golang -y
choco install visualstudio2017professional -y
choco install visualstudiocode -y
choco install docker-for-windows -y
#--- Gaming ---
choco install steam -y
choco install uplay -y
choco install geforce-experience -y
choco install logitechgaming -y
#--- Misc Tools ---
choco install Slack -y
choco install discord -y
choco install Vlc -y
choco install deezer -y
#--- Fonts ---
choco install inconsolata -y
choco install ubuntu.font -y
#--- Windows Settings ---
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneExpandToCurrentFolder -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneShowAllFolders -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name LaunchTo -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
#--- Restore Temporary Settings ---
Enable-UAC
Enable-MicrosoftUpdate
Install-WindowsUpdate -acceptEula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment