Skip to content

Instantly share code, notes, and snippets.

@MattHodge
Last active December 29, 2020 22:57
Show Gist options
  • Save MattHodge/ff7d189b67a7b64c2ddf to your computer and use it in GitHub Desktop.
Save MattHodge/ff7d189b67a7b64c2ddf to your computer and use it in GitHub Desktop.
00_Blog_Win10_Development_PC_Install.ps1
# Configure PowerShell Execution Policy
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force
# Install Chocolatey
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
# Install the required apps
choco install git.install -y
choco install virtualbox -y
choco install vagrant -y
choco install chefdk -y
choco install atom -y
# Install Posh-Git
Install-Module posh-git
# Optional - install tabbed Explorer
choco install clover -y
# Optional - free git GUI
choco install sourcetree -y
# OR you could try
choco install gitextensions -y
# Update Pester - https://github.com/pester/Pester
Install-Module -Name Pester -Confirm:$true
# Install the PSScriptAnalyzer - https://github.com/PowerShell/PSScriptAnalyzer
Install-Module -Name PSScriptAnalyzer -Confirm:$true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment