Last active
December 15, 2015 03:22
-
-
Save silarsis/ba237acc2e3443b7525f to your computer and use it in GitHub Desktop.
Boxstarter for my 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
Set-WindowsExplorerOptions -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
#Enable-MicrosoftUpdate | |
#Install-WindowsUpdate | |
# Desktop apps | |
cinst google-chrome-x64 atom lastpass steam slack visualstudiocode -y | |
# AWS Powershell Tools | |
Invoke-WebRequest -uri http://sdk-for-net.amazonwebservices.com/latest/AWSToolsAndSDKForNet.msi -OutFile .\AWSToolsAndSDKForNet.msi | |
msiexec.exe /qn /i AWSToolsAndSDKForNet.msi | |
del AWSToolsAndSDKForNet.msi | |
# Powershell/command line/background dev tools | |
#cinst docker docker-machine virtualbox vagrant -pre -y | |
# Git and Powershell git helpers | |
cinst git -y -params '"/GitAndUnixToolsOnPath"' | |
cinst poshgit mysql.workbench -y | |
# Manual Tasks: | |
# Install Resharper? | |
# Atom packages | |
apm install git-plus fonts language-diff language-docker language-powershell jshint | |
Update-ExecutionPolicy RemoteSigned |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment