Last active
December 29, 2020 22:57
-
-
Save MattHodge/ff7d189b67a7b64c2ddf to your computer and use it in GitHub Desktop.
00_Blog_Win10_Development_PC_Install.ps1
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
# 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
From Blog Post: https://www.hodgkins.net.au/powershell/setup-windows-10-for-chef-and-powershell-dsc-development/