@@ -15,34 +15,39 @@ Overview
15
15
16
16
Use this tutorial to install MongoDB Community Edition on Windows systems.
17
17
18
- .. admonition:: Platform Support
19
-
20
- Starting in version 3.6 MongoDB requires Windows Server 2008 R2,
21
- Windows 7, or later.
22
-
23
- .. important:: If you are running any edition of Windows Server 2008
24
- R2 or Windows 7, please install `a hotfix to resolve an issue with
25
- memory mapped files on Windows <http://support.microsoft.com/kb/2731284>`_.
26
-
27
18
.. note::
28
19
29
20
.. include:: /includes/fact-default-bind-ip-change.rst
30
21
31
- Requirements
32
- ------------
22
+ System Requirements
23
+ -------------------
33
24
34
- MongoDB Community Edition requires Windows Server 2008 R2, Windows 7, or
35
- later. The ``.msi`` installer includes all other software dependencies
36
- and will automatically upgrade any older version of MongoDB installed
37
- using an ``.msi`` file.
25
+ MongoDB Community Edition requires Microsoft Windows Server 2008 R2 or
26
+ later or Microsoft Windows 7 or later on an x86 64-bit architecture.
27
+ The Windows installer (``.msi``) file includes all other
28
+ software dependencies and automatically upgrades any previous version
29
+ of MongoDB that was installed using an ``.msi`` file.
38
30
39
- To find which version of Windows you are running, enter the following
40
- commands in the :guilabel:`Command Prompt` or :guilabel:`Powershell`:
31
+ To find which version, service pack, and build of Windows is
32
+ running on your host and the processor type of that host, enter the
33
+ following command in either the :guilabel:`Command Prompt` or
34
+ :guilabel:`Powershell`:
41
35
42
36
.. code-block:: powershell
43
37
44
- wmic os get caption
45
- wmic os get osarchitecture
38
+ PS C:\> systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"
39
+
40
+ .. code-block:: powershell
41
+ :copyable: false
42
+
43
+ OS Name: Microsoft Windows 10 Pro
44
+ OS Version: 10.0.17134 N/A Build 17134
45
+ System Type: x64-based PC
46
+
47
+ .. important:: If you are running any edition of Windows Server 2008
48
+ R2 or Windows 7, please install `a hotfix to resolve an issue with
49
+ memory mapped files on Windows
50
+ <http://support.microsoft.com/kb/2731284>`_.
46
51
47
52
Get MongoDB Community Edition
48
53
-----------------------------
0 commit comments