Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Learn More Register Now

Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

261,815

Downloads of v 4.4.1-rc2:

182

Last Update:

27 Aug 2020

Package Maintainer(s):

Software Author(s):

  • MongoDB Inc

Tags:

cli database nosql admin

MongoDB (Install)

This is a prerelease version of MongoDB (Install).

  • 1
  • 2
  • 3

4.4.1-rc2 | Updated: 27 Aug 2020

Downloads:

261,815

Downloads of v 4.4.1-rc2:

182

Maintainer(s):

Software Author(s):

  • MongoDB Inc

MongoDB (Install) 4.4.1-rc2

This is a prerelease version of MongoDB (Install).

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

MongoDB application is only supported on Windows 10/Windows 2016 or later. See https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/#platform-support

Details

Scan Testing Exemption for this package version only:

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install MongoDB (Install), run the following command from the command line or from PowerShell:

>

To upgrade MongoDB (Install), run the following command from the command line or from PowerShell:

>

To uninstall MongoDB (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade mongodb.install -y --source="'INTERNAL REPO URL'" --version="'4.4.1-rc2'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade mongodb.install -y --source="'INTERNAL REPO URL'" --version="'4.4.1-rc2'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install mongodb.install
  win_chocolatey:
    name: mongodb.install
    version: '4.4.1-rc2'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'mongodb.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.4.1-rc2'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller mongodb.install
{
    Name        = "mongodb.install"
    Version     = "4.4.1-rc2"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'mongodb.install':
  ensure          => '4.4.1-rc2',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

Package Approved

This package was approved as a trusted package on 27 Aug 2020.

Description

MongoDB (from "humongous") is a scalable, high-performance, open source NoSQL database written in C++.

MongoDB stores data using a flexible document data model that is similar to JSON. Documents contain one or more fields, including arrays, binary data and sub-documents. Fields can vary from document to document. This flexibility allows development teams to evolve the data model rapidly as their application requirements change.

Developers access documents through rich, idiomatic drivers available in all popular programming languages. Documents map naturally to the objects in modern languages, which allows developers to be extremely productive. Typically, there’s no need for an ORM layer.

Package Parameters

The following package parameters can be set:

  • /dataPath: - where MongoDB stores its database files - defaults to "$env:ProgramData\MongoDB\data\db"
  • /logPath: - where MongoDB stores its logs - defaults to "$env:ProgramData\MongoDB\log"

To pass parameters, use --params "''" (e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'").
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades.

Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64          = 'https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.1-rc2-signed.msi'
$checksum64     = '2bf185e37144e56ea557bc2d34cbe2135c5eed8791440d37a36d2d4c01258e1c'
$checksumType64 = 'sha256'
$silentArgs     = 'ADDLOCAL="ServerService,Server,ProductFeature,Client,Router,MiscellaneousTools" /qn /norestart'
$dataPath       = "$env:PROGRAMDATA\MongoDB\data\db"
$logPath        = "$env:PROGRAMDATA\MongoDB\log"

$WindowsVersion=[Environment]::OSVersion.Version
if ($WindowsVersion.Major -ne "10") {
  throw "This package requires Windows 10 or Windows Server 2016."
}

# Allow the user to specify the data and log path, falling back to sensible defaults
$pp = Get-PackageParameters

if($pp.dataPath) {
    $dataPath = $pp.dataPath
}
if($pp.logPath) {
    $logPath = $pp.logPath
}

# Create directories
New-Item -ItemType Directory $dataPath -ErrorAction SilentlyContinue
New-Item -ItemType Directory $logPath -ErrorAction SilentlyContinue

$silentArgs += " MONGO_DATA_PATH=`"$dataPath`" "
$silentArgs += " MONGO_LOG_PATH=`"$logPath`" "

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  unzipLocation  = $toolsDir
  fileType       = 'msi'
  url64bit      = $url64
  checksum64    = $checksum64
  checksumType64= $checksumType64
  softwareName   = 'MongoDB *'
  silentArgs     = $silentArgs
  validExitCodes = @(0,3010)
}

Install-ChocolateyPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
MongoDB (Install) 7.2.0-rc3 22 Saturday, December 2, 2023 Exempted
MongoDB (Install) 7.2.0-rc1 68 Wednesday, November 8, 2023 Exempted
MongoDB (Install) 7.1.1 9 Monday, November 27, 2023
Waiting for Maintainer
MongoDB (Install) 7.1.1-rc0 14 Thursday, November 9, 2023 Exempted
MongoDB (Install) 7.1.0-rc4 98 Thursday, September 28, 2023 Exempted
MongoDB (Install) 7.1.0-rc3 33 Wednesday, September 20, 2023 Exempted
MongoDB (Install) 7.1.0-rc2 42 Wednesday, September 13, 2023 Exempted
MongoDB (Install) 7.1.0-rc1 43 Wednesday, September 6, 2023 Approved
MongoDB (Install) 7.1.0-rc0 48 Wednesday, August 30, 2023 Approved
MongoDB (Install) 7.0.4 6 Monday, November 27, 2023
Waiting for Maintainer
MongoDB (Install) 7.0.4-rc0 13 Friday, November 10, 2023 Exempted
MongoDB (Install) 7.0.3 16 Thursday, November 9, 2023
Waiting for Maintainer
MongoDB (Install) 7.0.3-rc1 10 Friday, October 20, 2023 Exempted
MongoDB (Install) 7.0.2-rc2 13 Wednesday, September 20, 2023 Exempted
MongoDB (Install) 7.0.2-rc1 16 Saturday, September 9, 2023 Exempted
MongoDB (Install) 7.0.1-rc0 56 Wednesday, August 23, 2023 Approved
MongoDB (Install) 7.0.0 960 Monday, August 14, 2023 Approved
MongoDB (Install) 7.0.0-rc8 79 Thursday, July 20, 2023 Approved
MongoDB (Install) 7.0.0-rc7 37 Thursday, July 13, 2023 Approved
MongoDB (Install) 7.0.0-rc6 61 Thursday, June 29, 2023 Approved
MongoDB (Install) 7.0.0-rc5 34 Thursday, June 22, 2023 Approved
MongoDB (Install) 7.0.0-rc4 45 Friday, June 16, 2023 Approved
MongoDB (Install) 7.0.0-rc3 46 Thursday, June 8, 2023 Approved
MongoDB (Install) 7.0.0-rc2 57 Wednesday, May 24, 2023 Approved
MongoDB (Install) 7.0.0-rc1 48 Thursday, May 18, 2023 Approved
MongoDB (Install) 7.0.0-rc0 78 Tuesday, April 25, 2023 Approved
MongoDB (Install) 6.3.2 2045 Thursday, June 29, 2023 Approved
MongoDB (Install) 6.3.2-rc1 15 Wednesday, June 28, 2023 Approved
MongoDB (Install) 6.3.2-rc0 15 Friday, June 2, 2023 Approved
MongoDB (Install) 6.3.1 2402 Wednesday, May 3, 2023 Approved
MongoDB (Install) 6.3.1-rc1 16 Tuesday, April 25, 2023 Approved
MongoDB (Install) 6.3.0 1012 Monday, April 17, 2023 Approved
MongoDB (Install) 6.3.0-rc3 73 Friday, March 31, 2023 Approved
MongoDB (Install) 6.3.0-rc2 42 Thursday, March 23, 2023 Approved
MongoDB (Install) 6.3.0-rc1 50 Wednesday, March 15, 2023 Approved
MongoDB (Install) 6.3.0-rc0 131 Wednesday, February 8, 2023 Approved
MongoDB (Install) 6.2.1 2353 Friday, March 3, 2023 Approved
MongoDB (Install) 6.2.1-rc1 25 Saturday, February 18, 2023 Approved
MongoDB (Install) 6.2.1-rc0 17 Tuesday, February 14, 2023 Approved
MongoDB (Install) 6.2.0 2112 Friday, January 27, 2023 Approved
MongoDB (Install) 6.2.0-rc6 73 Friday, January 13, 2023 Approved
MongoDB (Install) 6.2.0-rc4 94 Thursday, December 15, 2022 Approved
MongoDB (Install) 6.2.0-rc3 34 Friday, December 9, 2022 Approved
MongoDB (Install) 6.2.0-rc2 51 Thursday, December 1, 2022 Approved
MongoDB (Install) 6.2.0-rc1 77 Thursday, November 17, 2022 Approved
MongoDB (Install) 6.1.1 1215 Tuesday, January 3, 2023 Approved
MongoDB (Install) 6.1.1-rc1 24 Monday, December 19, 2022 Approved
MongoDB (Install) 6.1.1-rc0 31 Wednesday, November 23, 2022 Approved
MongoDB (Install) 6.1.0 3062 Tuesday, October 11, 2022 Approved
MongoDB (Install) 6.1.0-rc4 58 Tuesday, October 4, 2022 Approved
MongoDB (Install) 6.1.0-rc3 64 Wednesday, September 28, 2022 Approved
MongoDB (Install) 6.1.0-rc2 74 Thursday, September 15, 2022 Approved
MongoDB (Install) 6.1.0-rc1 50 Friday, September 9, 2022 Approved
MongoDB (Install) 6.1.0-rc0 71 Tuesday, August 30, 2022 Exempted
MongoDB (Install) 6.0.12 6 Monday, November 27, 2023
Waiting for Maintainer
MongoDB (Install) 6.0.12-rc1 17 Tuesday, November 14, 2023 Exempted
MongoDB (Install) 6.0.12-rc0 17 Friday, November 10, 2023 Exempted
MongoDB (Install) 6.0.11-rc0 9 Friday, September 29, 2023 Exempted
MongoDB (Install) 6.0.10-rc0 17 Saturday, September 2, 2023 Approved
MongoDB (Install) 6.0.9 91 Monday, August 14, 2023 Approved
MongoDB (Install) 6.0.9-rc1 22 Saturday, August 5, 2023 Approved
MongoDB (Install) 6.0.9-rc0 20 Friday, July 28, 2023 Approved
MongoDB (Install) 6.0.8 18 Thursday, July 13, 2023 Approved
MongoDB (Install) 6.0.8-rc0 17 Friday, June 30, 2023 Approved
MongoDB (Install) 6.0.7 20 Wednesday, June 28, 2023 Approved
MongoDB (Install) 6.0.7-rc0 15 Tuesday, June 20, 2023 Approved
MongoDB (Install) 6.0.6 27 Friday, May 12, 2023 Approved
MongoDB (Install) 6.0.6-rc1 18 Friday, April 28, 2023 Approved
MongoDB (Install) 6.0.6-rc0 18 Tuesday, April 25, 2023 Approved
MongoDB (Install) 6.0.5 35 Monday, March 13, 2023 Approved
MongoDB (Install) 6.0.5-rc1 19 Friday, March 3, 2023 Approved
MongoDB (Install) 6.0.5-rc0 22 Monday, February 20, 2023 Approved
MongoDB (Install) 6.0.4 47 Wednesday, January 18, 2023 Approved
MongoDB (Install) 6.0.4-rc0 27 Thursday, January 12, 2023 Approved
MongoDB (Install) 6.0.3 44 Tuesday, November 15, 2022 Approved
MongoDB (Install) 6.0.3-rc2 32 Thursday, November 10, 2022 Approved
MongoDB (Install) 6.0.2 975 Thursday, September 29, 2022 Approved
MongoDB (Install) 6.0.2-rc1 37 Thursday, September 22, 2022 Approved
MongoDB (Install) 6.0.2-rc0 45 Tuesday, August 30, 2022 Exempted
MongoDB (Install) 6.0.1 2352 Friday, August 19, 2022 Exempted
MongoDB (Install) 6.0.0 2297 Tuesday, July 19, 2022 Exempted
MongoDB (Install) 6.0.0-rc9 148 Thursday, June 9, 2022 Exempted
MongoDB (Install) 6.0.0-rc8 76 Wednesday, June 1, 2022 Exempted
MongoDB (Install) 6.0.0-rc7 96 Wednesday, May 25, 2022 Exempted
MongoDB (Install) 6.0.0-rc6 67 Wednesday, May 18, 2022 Exempted
MongoDB (Install) 6.0.0-rc5 89 Wednesday, May 11, 2022 Exempted
MongoDB (Install) 6.0.0-rc4 59 Wednesday, May 4, 2022 Exempted
MongoDB (Install) 6.0.0-rc3 57 Thursday, April 28, 2022 Exempted
MongoDB (Install) 6.0.0-rc1 57 Thursday, April 21, 2022 Exempted
MongoDB (Install) 6.0.0-rc0 71 Thursday, April 14, 2022 Exempted
MongoDB (Install) 5.3.2 2176 Thursday, June 23, 2022 Exempted
MongoDB (Install) 5.3.2-rc2 39 Wednesday, June 1, 2022 Exempted
MongoDB (Install) 5.3.2-rc1 46 Monday, May 23, 2022 Exempted
MongoDB (Install) 5.3.2-rc0 45 Tuesday, May 17, 2022 Exempted
MongoDB (Install) 5.3.1 4820 Friday, April 8, 2022 Exempted
MongoDB (Install) 5.3.0-rc4 119 Saturday, March 19, 2022 Exempted
MongoDB (Install) 5.3.0-rc3 86 Wednesday, March 9, 2022 Exempted
MongoDB (Install) 5.3.0-rc2 69 Wednesday, March 2, 2022 Exempted
MongoDB (Install) 5.3.0-rc1 72 Thursday, February 24, 2022 Exempted
MongoDB (Install) 5.3.0-rc0 125 Wednesday, February 16, 2022 Exempted
MongoDB (Install) 5.2.2-rc0 55 Thursday, March 10, 2022 Exempted
MongoDB (Install) 5.2.1 4531 Thursday, February 24, 2022 Approved
MongoDB (Install) 5.2.1-rc0 71 Monday, February 14, 2022 Exempted
MongoDB (Install) 5.2.0 2414 Friday, January 14, 2022 Exempted
MongoDB (Install) 5.2.0-rc6 66 Wednesday, January 12, 2022 Exempted
MongoDB (Install) 5.2.0-rc4 90 Thursday, January 6, 2022 Exempted
MongoDB (Install) 5.2.0-rc3 69 Thursday, December 30, 2021 Exempted
MongoDB (Install) 5.2.0-rc2 83 Wednesday, December 22, 2021 Exempted
MongoDB (Install) 5.2.0-rc1 66 Friday, December 17, 2021 Exempted
MongoDB (Install) 5.2.0-rc0 84 Thursday, December 9, 2021 Exempted
MongoDB (Install) 5.1.2-rc0 50 Wednesday, December 22, 2021 Exempted
MongoDB (Install) 5.1.1 2372 Monday, December 6, 2021 Exempted
MongoDB (Install) 5.1.1-rc0 147 Tuesday, November 23, 2021 Exempted
MongoDB (Install) 5.1.0 1749 Tuesday, November 9, 2021 Exempted
MongoDB (Install) 5.1.0-rc3 87 Wednesday, November 3, 2021 Exempted
MongoDB (Install) 5.1.0-rc2 91 Wednesday, October 27, 2021 Exempted
MongoDB (Install) 5.1.0-rc1 90 Wednesday, October 20, 2021 Exempted
MongoDB (Install) 5.1.0-rc0 106 Wednesday, October 13, 2021 Exempted
MongoDB (Install) 5.0.23 6 Monday, November 27, 2023
Waiting for Maintainer
MongoDB (Install) 5.0.23-rc0 13 Tuesday, November 14, 2023 Exempted
MongoDB (Install) 5.0.22-rc1 9 Friday, October 20, 2023 Exempted
MongoDB (Install) 5.0.22-rc0 14 Friday, October 13, 2023 Exempted
MongoDB (Install) 5.0.21-rc0 20 Friday, September 1, 2023 Approved
MongoDB (Install) 5.0.20 103 Monday, August 14, 2023 Approved
MongoDB (Install) 5.0.20-rc1 13 Saturday, August 5, 2023 Approved
MongoDB (Install) 5.0.19 23 Thursday, July 13, 2023 Approved
MongoDB (Install) 5.0.19-rc0 17 Saturday, July 1, 2023 Approved
MongoDB (Install) 5.0.18 40 Thursday, May 18, 2023 Approved
MongoDB (Install) 5.0.18-rc2 15 Friday, May 12, 2023 Approved
MongoDB (Install) 5.0.18-rc1 14 Monday, May 8, 2023 Approved
MongoDB (Install) 5.0.17 92 Tuesday, April 25, 2023 Approved
MongoDB (Install) 5.0.17-rc0 16 Monday, April 17, 2023 Approved
MongoDB (Install) 5.0.16 254 Monday, April 10, 2023 Approved
MongoDB (Install) 5.0.16-rc0 17 Thursday, March 30, 2023 Approved
MongoDB (Install) 5.0.15 6804 Friday, February 24, 2023 Approved
MongoDB (Install) 5.0.15-rc2 27 Friday, February 17, 2023 Approved
MongoDB (Install) 5.0.15-rc1 21 Saturday, January 28, 2023 Approved
MongoDB (Install) 5.0.15-rc0 23 Wednesday, January 18, 2023 Approved
MongoDB (Install) 5.0.14 2790 Monday, November 21, 2022 Approved
MongoDB (Install) 5.0.14-rc0 30 Saturday, November 12, 2022 Approved
MongoDB (Install) 5.0.13 1904 Thursday, September 29, 2022 Approved
MongoDB (Install) 5.0.13-rc0 30 Thursday, September 22, 2022 Approved
MongoDB (Install) 5.0.12 11777 Tuesday, September 6, 2022 Approved
MongoDB (Install) 5.0.12-rc0 39 Tuesday, August 30, 2022 Exempted
MongoDB (Install) 5.0.11 566 Friday, August 19, 2022 Exempted
MongoDB (Install) 5.0.11-rc1 35 Wednesday, August 10, 2022 Exempted
MongoDB (Install) 5.0.10 714 Friday, July 29, 2022 Exempted
MongoDB (Install) 5.0.10-rc0 41 Friday, July 15, 2022 Exempted
MongoDB (Install) 5.0.9 1753 Tuesday, May 31, 2022 Exempted
MongoDB (Install) 5.0.9-rc1 48 Wednesday, May 18, 2022 Exempted
MongoDB (Install) 5.0.9-rc0 43 Tuesday, May 17, 2022 Exempted
MongoDB (Install) 5.0.8 1217 Tuesday, April 26, 2022 Approved
MongoDB (Install) 5.0.8-rc0 39 Thursday, April 21, 2022 Exempted
MongoDB (Install) 5.0.7 458 Monday, April 11, 2022 Approved
MongoDB (Install) 5.0.7-rc1 49 Tuesday, March 29, 2022 Exempted
MongoDB (Install) 5.0.7-rc0 49 Saturday, March 19, 2022 Exempted
MongoDB (Install) 5.0.6 2037 Monday, January 31, 2022 Exempted
MongoDB (Install) 5.0.6-rc2 50 Monday, January 24, 2022 Exempted
MongoDB (Install) 5.0.6-rc1 47 Thursday, January 20, 2022 Exempted
MongoDB (Install) 5.0.6-rc0 46 Friday, January 7, 2022 Exempted
MongoDB (Install) 5.0.5 1666 Monday, December 6, 2021 Exempted
MongoDB (Install) 5.0.5-rc0 61 Tuesday, November 23, 2021 Exempted
MongoDB (Install) 5.0.4 747 Monday, November 15, 2021 Exempted
MongoDB (Install) 5.0.4-rc0 66 Thursday, November 4, 2021 Exempted
MongoDB (Install) 5.0.3 3606 Monday, September 20, 2021 Exempted
MongoDB (Install) 5.0.3-rc2 70 Friday, September 17, 2021 Exempted
MongoDB (Install) 5.0.3-rc1 73 Thursday, September 16, 2021 Exempted
MongoDB (Install) 5.0.2 3526 Wednesday, August 4, 2021 Approved
MongoDB (Install) 5.0.2-rc0 99 Thursday, July 29, 2021 Exempted
MongoDB (Install) 5.0.1 1212 Thursday, July 22, 2021 Approved
MongoDB (Install) 5.0.1-rc0 104 Monday, July 19, 2021 Exempted
MongoDB (Install) 5.0.0 1080 Tuesday, July 13, 2021 Exempted
MongoDB (Install) 5.0.0-rc8 76 Thursday, July 8, 2021 Exempted
MongoDB (Install) 5.0.0-rc7 81 Friday, July 2, 2021 Exempted
MongoDB (Install) 5.0.0-rc6 75 Wednesday, June 30, 2021 Exempted
MongoDB (Install) 5.0.0-rc5 92 Tuesday, June 29, 2021 Exempted
MongoDB (Install) 5.0.0-rc4 86 Friday, June 25, 2021 Exempted
MongoDB (Install) 5.0.0-rc3 84 Wednesday, June 23, 2021 Exempted
MongoDB (Install) 5.0.0-rc2 91 Thursday, June 17, 2021 Exempted
MongoDB (Install) 5.0.0-rc1 95 Thursday, June 10, 2021 Exempted
MongoDB (Install) 5.0.0-rc0 115 Thursday, May 27, 2021 Exempted
MongoDB (Install) 4.9.0-rc1 165 Thursday, May 6, 2021 Exempted
MongoDB (Install) 4.9.0-rc0 236 Thursday, March 25, 2021 Approved
MongoDB (Install) 4.4.27-rc0 4 Wednesday, December 6, 2023 Exempted
MongoDB (Install) 4.4.26 8 Monday, November 27, 2023
Waiting for Maintainer
MongoDB (Install) 4.4.26-rc0 15 Friday, November 10, 2023 Exempted
MongoDB (Install) 4.4.25-rc0 14 Wednesday, September 20, 2023 Exempted
MongoDB (Install) 4.4.24 53 Tuesday, August 22, 2023 Approved
MongoDB (Install) 4.4.24-rc0 20 Monday, August 7, 2023 Approved
MongoDB (Install) 4.4.23 17 Thursday, July 13, 2023 Approved
MongoDB (Install) 4.4.23-rc0 16 Saturday, July 1, 2023 Approved
MongoDB (Install) 4.4.22 25 Thursday, May 18, 2023 Approved
MongoDB (Install) 4.4.22-rc2 17 Friday, May 12, 2023 Approved
MongoDB (Install) 4.4.22-rc1 14 Monday, May 8, 2023 Approved
MongoDB (Install) 4.4.22-rc0 16 Wednesday, May 3, 2023 Approved
MongoDB (Install) 4.4.21 45 Tuesday, April 25, 2023 Approved
MongoDB (Install) 4.4.21-rc0 15 Monday, April 17, 2023 Approved
MongoDB (Install) 4.4.20 26 Monday, April 10, 2023 Approved
MongoDB (Install) 4.4.20-rc0 17 Tuesday, April 4, 2023 Approved
MongoDB (Install) 4.4.19 140 Friday, February 24, 2023 Approved
MongoDB (Install) 4.4.19-rc2 20 Friday, February 17, 2023 Approved
MongoDB (Install) 4.4.19-rc1 19 Tuesday, February 14, 2023 Approved
MongoDB (Install) 4.4.19-rc0 18 Friday, January 27, 2023 Approved
MongoDB (Install) 4.4.18 165 Tuesday, November 15, 2022 Approved
MongoDB (Install) 4.4.18-rc0 23 Wednesday, November 9, 2022 Approved
MongoDB (Install) 4.4.17 43 Thursday, September 29, 2022 Approved
MongoDB (Install) 4.4.17-rc2 38 Thursday, September 22, 2022 Approved
MongoDB (Install) 4.4.17-rc1 27 Thursday, September 22, 2022 Approved
MongoDB (Install) 4.4.17-rc0 43 Tuesday, August 30, 2022 Exempted
MongoDB (Install) 4.4.16 42 Friday, August 19, 2022 Exempted
MongoDB (Install) 4.4.16-rc0 36 Wednesday, August 10, 2022 Exempted
MongoDB (Install) 4.4.15 119 Tuesday, June 21, 2022 Approved
MongoDB (Install) 4.4.15-rc0 45 Monday, June 13, 2022 Exempted
MongoDB (Install) 4.4.14 52 Tuesday, May 10, 2022 Exempted
MongoDB (Install) 4.4.14-rc0 45 Wednesday, April 20, 2022 Exempted
MongoDB (Install) 4.4.13 1214 Monday, March 7, 2022 Approved
MongoDB (Install) 4.4.13-rc0 55 Monday, February 28, 2022 Exempted
MongoDB (Install) 4.4.12 97 Friday, January 21, 2022 Exempted
MongoDB (Install) 4.4.12-rc1 75 Friday, January 7, 2022 Exempted
MongoDB (Install) 4.4.12-rc0 55 Friday, December 31, 2021 Exempted
MongoDB (Install) 4.4.11 71 Thursday, December 30, 2021 Exempted
MongoDB (Install) 4.4.11-rc1 55 Saturday, December 25, 2021 Exempted
MongoDB (Install) 4.4.11-rc0 60 Tuesday, November 23, 2021 Exempted
MongoDB (Install) 4.4.10 83 Friday, October 15, 2021 Exempted
MongoDB (Install) 4.4.10-rc0 58 Thursday, October 7, 2021 Exempted
MongoDB (Install) 4.4.9 78 Monday, September 20, 2021 Exempted
MongoDB (Install) 4.4.9-rc1 63 Thursday, September 16, 2021 Exempted
MongoDB (Install) 4.4.9-rc0 77 Tuesday, August 31, 2021 Exempted
MongoDB (Install) 4.4.8 70 Wednesday, August 4, 2021 Exempted
MongoDB (Install) 4.4.8-rc0 75 Thursday, July 29, 2021 Exempted
MongoDB (Install) 4.4.7 192 Friday, July 16, 2021 Exempted
MongoDB (Install) 4.4.7-rc1 59 Thursday, July 8, 2021 Exempted
MongoDB (Install) 4.4.7-rc0 71 Wednesday, June 23, 2021 Exempted
MongoDB (Install) 4.4.6 4535 Monday, May 10, 2021 Exempted
MongoDB (Install) 4.4.6-rc0 75 Thursday, May 6, 2021 Exempted
MongoDB (Install) 4.4.5 2640 Thursday, April 8, 2021 Approved
MongoDB (Install) 4.4.5-rc0 82 Friday, April 2, 2021 Exempted
MongoDB (Install) 4.4.4 3477 Tuesday, February 16, 2021 Approved
MongoDB (Install) 4.4.4-rc1 132 Wednesday, February 10, 2021 Approved
MongoDB (Install) 4.4.4-rc0 145 Thursday, February 4, 2021 Approved
MongoDB (Install) 4.4.3 3160 Monday, January 4, 2021 Approved
MongoDB (Install) 4.4.3-rc0 177 Wednesday, December 16, 2020 Approved
MongoDB (Install) 4.4.2 2898 Wednesday, November 18, 2020 Approved
MongoDB (Install) 4.4.2-rc1 115 Wednesday, November 11, 2020 Approved
MongoDB (Install) 4.4.2-rc0 168 Thursday, October 29, 2020 Approved
MongoDB (Install) 4.4.1 3991 Wednesday, September 9, 2020 Approved
MongoDB (Install) 4.4.1-rc3 167 Wednesday, September 2, 2020 Approved
MongoDB (Install) 4.4.1-rc2 182 Thursday, August 27, 2020 Approved
MongoDB (Install) 4.4.1-rc1 138 Tuesday, August 25, 2020 Approved
MongoDB (Install) 4.4.1-rc0 142 Saturday, August 22, 2020 Approved
MongoDB (Install) 4.4.0.20200814 1857 Friday, August 14, 2020 Approved
MongoDB (Install) 4.4.0 817 Wednesday, August 12, 2020 Approved
MongoDB (Install) 4.2.8 4227 Tuesday, June 16, 2020 Approved
MongoDB (Install) 4.2.7 1748 Monday, May 25, 2020 Approved
MongoDB (Install) 4.2.6 2964 Monday, April 20, 2020 Approved
MongoDB (Install) 4.2.5 1694 Tuesday, March 24, 2020 Approved
MongoDB (Install) 4.2.4 1508 Thursday, March 12, 2020 Approved
MongoDB (Install) 4.2.3 5650 Tuesday, January 28, 2020 Approved
MongoDB (Install) 4.2.2 3496 Tuesday, December 10, 2019 Approved
MongoDB (Install) 4.2.1 3336 Friday, October 18, 2019 Approved
MongoDB (Install) 4.2.0 8018 Sunday, August 18, 2019 Approved
MongoDB (Install) 4.0.12 2952 Friday, August 9, 2019 Approved
MongoDB (Install) 4.0.11 4048 Saturday, July 27, 2019 Approved
MongoDB (Install) 4.0.10 18415 Thursday, May 30, 2019 Approved
MongoDB (Install) 4.0.9 2475 Tuesday, April 16, 2019 Approved
MongoDB (Install) 4.0.8 1383 Friday, March 29, 2019 Approved
MongoDB (Install) 4.0.7 16886 Monday, March 25, 2019 Approved
MongoDB (Install) 4.0.6 2586 Thursday, February 7, 2019 Approved
MongoDB (Install) 4.0.5 2971 Thursday, December 20, 2018 Approved
MongoDB (Install) 4.0.4 956 Monday, December 10, 2018 Approved
MongoDB (Install) 3.6.3 3548 Thursday, March 8, 2018 Approved
MongoDB (Install) 3.6.2 822 Wednesday, February 21, 2018 Approved
MongoDB (Install) 3.6.0 17985 Tuesday, December 19, 2017 Approved
MongoDB (Install) 3.4.7 15339 Tuesday, August 8, 2017 Approved
MongoDB (Install) 3.4.6 1356 Tuesday, July 18, 2017 Approved
MongoDB (Install) 3.4.5 1502 Monday, July 3, 2017 Approved
MongoDB (Install) 3.2.10 8545 Thursday, October 20, 2016 Approved
MongoDB (Install) 3.2.9 2490 Tuesday, August 16, 2016 Approved
MongoDB (Install) 3.2.8 3095 Wednesday, July 20, 2016 Approved
MongoDB (Install) 3.2.7 569 Tuesday, June 7, 2016 Approved
MongoDB (Install) 3.2.6 902 Friday, May 27, 2016 Approved

Discussion for the MongoDB (Install) Package

Ground Rules:

  • This discussion is only about MongoDB (Install) and the MongoDB (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or MongoDB (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus