mirror of
https://github.com/actions/runner-images.git
synced 2025-12-27 03:47:40 +08:00
18 lines
432 B
PowerShell
18 lines
432 B
PowerShell
################################################################################
|
|
## File: Validate-NSIS.ps1
|
|
## Desc: Validate NSIS installation.
|
|
################################################################################
|
|
|
|
$SoftwareName = 'Nullsoft Install System (NSIS)'
|
|
|
|
if (Get-Command -Name 'makensis')
|
|
{
|
|
Write-Host "$SoftwareName is installed"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "$SoftwareName is not installed"
|
|
exit 1
|
|
}
|
|
|