Skip to content

DOCS-11590: Update unattended installation for Windows to include new… #3296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions source/includes/release-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ code: |
INSTALLLOCATION="{{location}}" ^
ADDLOCAL="{{addlocal}}"
---
ref: _install-windows-nocompass
copyable: true
language: powershell
code: |
msiexec.exe /q /i mongodb-win32-x86_64-2008plus-ssl-{{version}}-signed.msi ^
INSTALLLOCATION="{{location}}" ^
ADDLOCAL="{{addlocal}}" ^
SHOULD_INSTALL_COMPASS="0"
---
ref: _install-windows-ent
copyable: true
language: powershell
Expand Down
8 changes: 8 additions & 0 deletions source/includes/release-specifications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ replacement:
location: 'C:\Program Files\MongoDB\Server\{{version}}\'
addlocal: 'all'
---
ref: install-windows-nocompass
source:
file: release-base.yaml
ref: _install-windows-nocompass
replacement:
location: 'C:\Program Files\MongoDB\Server\{{version}}\'
addlocal: 'all'
---
ref: install-windows-addlocal
source:
file: release-base.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ pre: |
For instance, to install *only* the MongoDB utilities, invoke:

.. include:: {{release_specification_addlocal}}

If you do NOT wish to install :ref:`MongoDB Compass <compass-index>`
at this time, include the ``SHOULD_INSTALL_COMPASS="0"`` argument.

.. include:: {{release_specification_nocompass}}

replacement:
release_specification_default: "/includes/release/install-windows-default.rst"
release_specification_addlocal: "/includes/release/install-windows-addlocal.rst"
release_specification_nocompass: "/includes/release/install-windows-nocompass.rst"