2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-NSIS.ps1
|
|
|
|
|
## Desc: Install NSIS
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2020-08-12 01:41:25 +05:00
|
|
|
Install-Binary -Url 'https://downloads.sourceforge.net/project/nsis/NSIS%203/3.06.1/nsis-3.06.1-setup.exe' -Name nsis-3.06.1-setup.exe -ArgumentList ('/S')
|
2019-12-13 09:48:00 -05:00
|
|
|
|
|
|
|
|
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
|
|
|
|
|
Add-MachinePathItem $NsisPath
|
|
|
|
|
$env:Path = Get-MachinePath
|
2020-07-17 15:29:03 +07:00
|
|
|
|
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "NSIS"
|