Files
runner-images-PK/images/win/scripts/Installers/Install-NSIS.ps1
T

14 lines
606 B
PowerShell
Raw Normal View History

################################################################################
## File: Install-NSIS.ps1
## Desc: Install NSIS
################################################################################
2021-12-16 02:57:04 -05:00
$NsisVersion = (Get-ToolsetContent).nsis.version
Install-Binary -Url "https://downloads.sourceforge.net/project/nsis/NSIS%203/${NsisVersion}/nsis-${NsisVersion}-setup.exe" -Name "nsis-${NsisVersion}-setup.exe" -ArgumentList ('/S')
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
Add-MachinePathItem $NsisPath
$env:Path = Get-MachinePath
2021-12-16 02:57:04 -05:00
Invoke-PesterTests -TestFile "Tools" -TestName "NSIS"