16 lines
333 B
PowerShell
16 lines
333 B
PowerShell
|
<#
|
||
|
.SYNOPSIS
|
||
|
Checks whether the specified package has been installed using Chocolatey.
|
||
|
|
||
|
.PARAMETER Name
|
||
|
The name of the package to check.
|
||
|
#>
|
||
|
function Test-ChocoSoftware {
|
||
|
[OutputType([bool])]
|
||
|
param(
|
||
|
[string] $Name
|
||
|
);
|
||
|
|
||
|
-not [string]::IsNullOrEmpty((choco list --limit-output --exact $name));
|
||
|
}
|