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