Skip to content

Instantly share code, notes, and snippets.

@wes-goulet
Last active July 17, 2018 04:50
Show Gist options
  • Save wes-goulet/dd90579b6261fc9a1da92857cdbc910e to your computer and use it in GitHub Desktop.
Save wes-goulet/dd90579b6261fc9a1da92857cdbc910e to your computer and use it in GitHub Desktop.
powershell commands to run when setting up new windows dev environment
# 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
@wes-goulet
Copy link
Author

If you want to setup autocomplete for yarn check out https://github.com/dsifford/yarn-completion

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment