Skip to content

Instantly share code, notes, and snippets.

@asmorger
Last active March 5, 2019 18:01
Show Gist options
  • Save asmorger/b0e28f24258e08fc102e5fb557736a6c to your computer and use it in GitHub Desktop.
Save asmorger/b0e28f24258e08fc102e5fb557736a6c to your computer and use it in GitHub Desktop.
.Net Core Developer New System Setup Script
$packages = @(
#dev tools
"jetbrains-rider",
"dotcover",
"dotpeek",
"dotmemory",
"dottrace",
"vscode",
"gitkraken",
#dev utils
"cmdermini",
"git.install",
"poshgit",
"dotnetcore-sdk",
"docker-desktop",
"docker-compose"
#utilities
"7zip",
"spotify",
"slack',
#fonts
"firacode"
)
Write-Host "Installing ChocolateyGet Package Provider..."
# Install Chocolatey if it's not present in OneGet
Install-PackageProvider ChocolateyGet -Force
Write-Host "Installation of ChocolateyGet complete."
# Install each of the packages
foreach($package in $packages){
Write-Host "Installing $package ..."
Find-Package -Provider ChocolateyGet -name $package | Install-Package -Force
Write-Host "Installation of $package complete."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment