Skip to content

Instantly share code, notes, and snippets.

@phaniav
Created June 19, 2018 00:29
Show Gist options
  • Save phaniav/df6f12b914ca31954063ec7615c29aa5 to your computer and use it in GitHub Desktop.
Save phaniav/df6f12b914ca31954063ec7615c29aa5 to your computer and use it in GitHub Desktop.
# Install Chocolatey if it's not already installed
if (-Not (Get-Command -Name choco -ErrorAction SilentlyContinue)) {
Set-ExecutionPolicy RemoteSigned
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
refreshenv
}
# Core (All Machines)
choco install 7zip.install -y
choco install googlechrome -y
choco install Firefox -y
choco install notepadplusplus.install - y
choco install slack -y
choco install microsoft-teams -y
# Development
choco install git.install --params="/NoShellIntegration" -y
# git config --global user.name "Your Name"
# git config --global user.email "[email protected]"
choco install sql-server-management-studio -y
choco install sourcetree -y
choco install winmerge - y
choco install openssh -y
choco install linqpad -y
choco install dotpeek -y
choco install visualstudiocode -y
refreshenv
if (Get-Command -Name code -ErrorAction SilentlyContinue) {
code --install-extension mohsen1.prettify-json
code --install-extension ms-vscode.csharp
code --install-extension ms-vscode.powershell
}
choco install visualstudio2017enterprise -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment