Last active
July 17, 2018 04:50
-
-
Save wes-goulet/dd90579b6261fc9a1da92857cdbc910e to your computer and use it in GitHub Desktop.
powershell commands to run when setting up new windows dev environment
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
# if you want to run this as a script then you have to make sure | |
# you've enabled RemoteSigned scripts with: | |
# Set-ExecutionPolicy RemoteSigned | |
# To run this script do the following: | |
# iwr https://gist.githubusercontent.com/wes566/dd90579b6261fc9a1da92857cdbc910e/raw/bootstrap_dev_machine.ps1 -UseBasicParsing | iex | |
#install chocolatey | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
choco install googlechrome -y | |
choco install visualstudiocode -y | |
choco install git.install -y | |
choco install dotnetcore-sdk -y | |
choco install docker-for-windows -y | |
choco install nodejs -y | |
choco install yarn -y | |
# don't hide file extensions, show hidden files | |
$key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'; | |
Set-ItemProperty $key Hidden 1; | |
Set-ItemProperty $key HideFileExt 0; | |
Stop-Process -processname explorer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to setup autocomplete for yarn check out https://github.com/dsifford/yarn-completion