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

11 lines
495 B
PowerShell
Raw Normal View History

2020-06-02 17:52:54 +05:00
####################################################################################
## 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"
2020-07-09 10:53:29 +03:00
Invoke-PesterTests -TestFile "Databases" -TestName "MongoDB"