Files
runner-images-PK/images/win/scripts/Installers/Validate-MongoDB.ps1
T

25 lines
475 B
PowerShell
Raw Normal View History

2020-06-02 17:52:54 +05:00
################################################################################
## File: Validate-MongoDB.ps1
## Desc: Validate MongoDB
################################################################################
if (Get-Command -Name 'mongod')
2020-06-02 17:52:54 +05:00
{
Write-Host 'mongod is on path'
2020-06-02 17:52:54 +05:00
}
else
{
Write-Host 'mongod not on path'
exit 1
}
if (Get-Command -Name 'mongo')
2020-06-02 17:52:54 +05:00
{
Write-Host 'mongo is on path'
2020-06-02 17:52:54 +05:00
}
else
{
Write-Host 'mongo not on path'
exit 1
}