Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
XpandPwsh
1.221.0.4
Public/Choco/Test-ChocoInstalled.ps1
function
Test-ChocoInstalled
{
[
CmdletBinding
(
)
]
[
CmdLetTag
(
"#chocolatey"
)
]
param
(
)
begin
{
}
process
{
choco
-v
}
end
{
}
}