mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
11 lines
351 B
PowerShell
11 lines
351 B
PowerShell
################################################################################
|
|
## File: Install-NSIS.ps1
|
|
## Desc: Install NSIS
|
|
################################################################################
|
|
|
|
Choco-Install -PackageName nsis
|
|
|
|
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
|
|
Add-MachinePathItem $NsisPath
|
|
$env:Path = Get-MachinePath
|