Skip to content

Instantly share code, notes, and snippets.

@FeodorFitsner
Created July 17, 2015 22:47
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 FeodorFitsner/f43219e731dabacc6ac1 to your computer and use it in GitHub Desktop.
Save FeodorFitsner/f43219e731dabacc6ac1 to your computer and use it in GitHub Desktop.
Install NSIS 2.46
# 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