Files
runner-images/images/win/scripts/Installers/Validate-MongoDB.ps1
Aleksandr Chebotov 52e3e704dd Update MongoDB and PostgreSQL documentation (#993)
* update mongodb and postgresql md

* update pg service
2020-06-03 17:35:03 +03:00

25 lines
475 B
PowerShell

################################################################################
## File: Validate-MongoDB.ps1
## Desc: Validate MongoDB
################################################################################
if (Get-Command -Name 'mongod')
{
Write-Host 'mongod is on path'
}
else
{
Write-Host 'mongod not on path'
exit 1
}
if (Get-Command -Name 'mongo')
{
Write-Host 'mongo is on path'
}
else
{
Write-Host 'mongo not on path'
exit 1
}