Posted On December 18, 2019

PowerShell: Install Visual Studio 2019 Community Version

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Install Visual Studio 2019 Community Version
# Install Chocolatey
if (!(Get-Command choco.exe -ErrorAction SilentlyContinue)) {
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))}

# Install Visual Studio 2019 Community version
choco install visualstudio2019community -y

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: How to Quickly Ping a Target

Method 1: Legacy ping command # Legacy method that works without any fusses $pingResult=ping google.com…

How To Invoke Functions as Background Jobs

Invoke-Command, Start-Job, Multi-Tasking is what good coders should aspire toward. Here, we're looking at some…

PowerShell: How To Append to Windows Environmental Paths Permanently

Often, when we install applications such as Python, its bin directory may not automatically be…