Skip to content

Instantly share code, notes, and snippets.

@v1ct0rv
Last active October 17, 2018 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save v1ct0rv/b36b7df58553889298decd8c7b01fdb6 to your computer and use it in GitHub Desktop.
Save v1ct0rv/b36b7df58553889298decd8c7b01fdb6 to your computer and use it in GitHub Desktop.
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