Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
OSD
22.8.12.1
Private/Other/Test-CommandCurlExe.ps1
function
Test-CommandCurlExe
{
[
CmdletBinding
(
)
]
param
(
)
if
(
Get-Command
'curl.exe'
-ErrorAction
SilentlyContinue
)
{
Return
$true
}
else
{
Return
$false
}
}