Created
July 17, 2015 22:47
-
-
Save FeodorFitsner/f43219e731dabacc6ac1 to your computer and use it in GitHub Desktop.
Install NSIS 2.46
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
# this will install NSIS to C:\nsis | |
$exePath = "$($env:USERPROFILE)\nsis-2.46-setup.exe" | |
(New-Object Net.WebClient).DownloadFile('http://ufpr.dl.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe', $exePath) | |
cmd /c start /wait $exePath /S /D=C:\nsis |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment