Skip to content

Instantly share code, notes, and snippets.

@davidwesst
Last active October 18, 2016 04:40
Show Gist options
  • Save davidwesst/a24ae470fbb0a312c809aa795da9e789 to your computer and use it in GitHub Desktop.
Save davidwesst/a24ae470fbb0a312c809aa795da9e789 to your computer and use it in GitHub Desktop.
<# Create PS Profile #>
New-Item -Path $Profile -Type File -Force
<# Install Chocolatey #>
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
<#
Utilities
- FileZilla
- PuTTY Tools
#>
choco install filezilla -y
choco install PuTTY -y
<#
Dev Tools
- Git
- Vim
- Visual Studio Code
#>
choco install git -params "/GitOnlyPath" -y
choco install vim -y
choco install VisualStudioCode -y
<#
Other Tools
- Slack
#>
choco install slack -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment