Last active
October 17, 2018 13:28
-
-
Save v1ct0rv/b36b7df58553889298decd8c7b01fdb6 to your computer and use it in GitHub Desktop.
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
switch ( $env:BoxstarterVSVersion ) | |
{ | |
Community | |
{ | |
Write-BoxstarterMessage "Installing Visual Studio Community Edition" | |
} | |
Professional | |
{ | |
Write-BoxstarterMessage "Installing Visual Studio Professional Edition" | |
} | |
Enterprise | |
{ | |
Write-BoxstarterMessage "Installing Visual Studio Enterprise Edition" | |
} | |
} | |
if($env:BoxstarterInstallGamingPackage -eq "true") | |
{ | |
Write-BoxstarterMessage "Installing Gaming Tools" | |
} | |
else | |
{ | |
Write-BoxstarterMessage "Skipping Gaming Tools" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment