Last active
May 27, 2018 09:00
-
-
Save lukesampson/8208023 to your computer and use it in GitHub Desktop.
Install script for Visual Studio 2010 (for use with Scoop).
This file contains 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
param($dir) | |
write-host 'extracting msi...' -nonewline | |
start msiexec -arg '/a', "$dir\vs_setup.msi", '/qn', "TARGETDIR=`"$dir\tmp`"" -wait | |
cp $dir\tmp\* $dir -r -force | |
rm $dir\tmp -r -force | |
rm $dir\vs_setup.msi | |
rm $dir\vs_setup.cab | |
rm $dir\vs_expbsln_x64_enu.cab | |
write-host 'done' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have an old installer for "Visual Studio 2013 Express Windows Desktop Version 5"
Would you be interested in writing an installer script for it? Is there a specific reason why you chose 2010?