From eb2977e14da7f96b90b117f1d28d910e8649b89b Mon Sep 17 00:00:00 2001 From: slateny <46876382+slateny@users.noreply.github.com> Date: Fri, 22 Apr 2022 00:12:54 -0700 Subject: [PATCH 1/2] Add table for Windows installer options --- Doc/using/windows.rst | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 88dcb002e2c249..097fb76d5d5b2a 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -126,11 +126,24 @@ command line, allowing scripted installers to replicate an installation on many machines without user interaction. These options may also be set without suppressing the UI in order to change some of the defaults. -To completely hide the installer UI and install Python silently, pass the -``/quiet`` option. To skip past the user interaction but still display -progress and errors, pass the ``/passive`` option. The ``/uninstall`` -option may be passed to immediately begin removing Python - no confirmation -prompt will be displayed. +The following options (found by executing the installer with ``/?``) can be +passed into Python: + ++---------------------+--------------------------------------------------------+ +| Name | Description | ++=====================+========================================================+ +| /passive | to display progress without requiring user interaction | ++---------------------+--------------------------------------------------------+ +| /quiet | to install/uninstall without displaying any UI | ++---------------------+--------------------------------------------------------+ +| /simple | to prevent user customization | ++---------------------+--------------------------------------------------------+ +| /uninstall | to remove Python (without confirmation) | ++---------------------+--------------------------------------------------------+ +| /layout [directory] | to pre-download all components | ++---------------------+--------------------------------------------------------+ +| /log [filename] | to specify log files location | ++---------------------+--------------------------------------------------------+ All other options are passed as ``name=value``, where the value is usually ``0`` to disable a feature, ``1`` to enable a feature, or a path. The full list From f156c36bf8136c2e743b19f656060a8ae3220784 Mon Sep 17 00:00:00 2001 From: slateny <46876382+slateny@users.noreply.github.com> Date: Fri, 22 Apr 2022 00:19:55 -0700 Subject: [PATCH 2/2] Change Python -> installer --- Doc/using/windows.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 097fb76d5d5b2a..1d1be20bea25f8 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -127,7 +127,7 @@ machines without user interaction. These options may also be set without suppressing the UI in order to change some of the defaults. The following options (found by executing the installer with ``/?``) can be -passed into Python: +passed into the installer: +---------------------+--------------------------------------------------------+ | Name | Description |