Guest User

Untitled

a guest
Oct 17th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. switch ( $env:BoxstarterVSVersion )
  2. {
  3. Community
  4. {
  5. Write-BoxstarterMessage "Installing Visual Studio Community Edition"
  6. }
  7. Professional
  8. {
  9. Write-BoxstarterMessage "Installing Visual Studio Professional Edition"
  10. }
  11. Enterprise
  12. {
  13. Write-BoxstarterMessage "Installing Visual Studio Enterprise Edition"
  14. }
  15. }
  16.  
  17. if($env:BoxstarterInstallGamingPackage -eq "true")
  18. {
  19. Write-BoxstarterMessage "Installing Gaming Tools"
  20. }
  21. else
  22. {
  23. Write-BoxstarterMessage "Skipping Gaming Tools"
  24. }
Add Comment
Please, Sign In to add comment