Last active
May 17, 2024 17:49
-
-
Save mrb0nj/c3926f4434331b1b0b16ff91d96834ac 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 | |
# | |
# 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