Created
June 1, 2018 21:48
-
-
Save tylerd/b1006c70c1d715fb668f6fd0d8b30ac5 to your computer and use it in GitHub Desktop.
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: Tyler Doerksen | |
# Azure Development Box | |
Disable-UAC | |
#--- Windows Features --- | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
#--- File Explorer 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 | |
#--- Tools --- | |
choco install -y vscode | |
choco install -y git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"' | |
choco install -y 7zip.install | |
#--- Windows Subsystems/Features --- | |
# Not avaiable on Windows Server 2016 | |
#choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures | |
#--- Browsers --- | |
choco install -y googlechrome | |
choco install -y firefox | |
#--- Fonts --- | |
choco install -y inconsolata | |
# choco install -y ubuntu.font | |
#--- Tools --- | |
choco install -y visualstudio2017enterprise | |
choco install -y sysinternals | |
choco install -y docker-for-windows | |
choco install -y python | |
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