mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 06:19:21 +00:00
11 lines
341 B
PowerShell
11 lines
341 B
PowerShell
################################################################################
|
|
## File: Install-NSIS.ps1
|
|
## Desc: Install NSIS
|
|
################################################################################
|
|
|
|
choco install nsis -y
|
|
|
|
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
|
|
Add-MachinePathItem $NsisPath
|
|
$env:Path = Get-MachinePath
|