Files
runner-images-sangeeth/images/win/scripts/Installers/Install-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

10 lines
434 B
PowerShell

####################################################################################
## File: Install-MongoDB.ps1
## Desc: Install MongoDB
####################################################################################
Choco-Install -PackageName mongodb
$mongoPath = (Get-CimInstance Win32_Service -Filter "Name LIKE 'mongodb'").PathName
$mongoBin = Split-Path -Path $mongoPath.split('"')[1]
Add-MachinePathItem "$mongoBin"