Skip to content

Instantly share code, notes, and snippets.

@devmindsbe
Last active April 16, 2019 13:54
Show Gist options
  • Select an option

  • Save devmindsbe/704a57e50b08324fb4554134e0b3cf32 to your computer and use it in GitHub Desktop.

Select an option

Save devmindsbe/704a57e50b08324fb4554134e0b3cf32 to your computer and use it in GitHub Desktop.
Boxstarter script for my dev machine
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 ---
choco install -y Microsoft-Hyper-V-All -source windowsFeatures
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Browsers
choco install -y googlechrome
choco install -y firefox
#--- Tools ---
choco install -y sysinternals
choco install -y docker-for-windows
choco install -y conemu
choco install -y ethanbrown.conemuconfig
choco install -y far
choco install -y 7zip.install
choco install -y visualstudio2017professional
choco install -y resharper-ultimate-all
choco install -y datagrip
choco install -yfilezilla
choco install -y nuget.commandline
choco install -y nugetpackageexplorer
choco install -y mremoteng
choco install -y postman
choco install -y notepadplusplus.install
choco install -y evernote
choco install -y office365business
choco install -y sql-server-management-studio
choco install -y sourcetree
#--- choco install -y git.install
choco install -y poshgit
choco install -y dotpeek
choco install -y adobereader
choco install -y vlc
#--- choco install nodejs.install
choco -y install inkscape
choco -y install curl
choco -y install paint.net
choco -y install chocolateygui
choco -y install dropbox
choco -y install everything
choco -y install microsoft-teams
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