Python Forum

Full Version: Silent installation with Add python.exe to path
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All:

I have try install the python with following

msiexec /i python-3.4.4.amd64.msi /quiet InstallAllUsers=1 PrependPath=1

As above the Environment Variable does not shown path is added.


is the PrependPath=1 also equal to the Add python.exe to Path in GUI Mode?

if it is not could someone kindly tell me what is the name to installed Add Python.exe to Path

many thanks
Ag248
Thank you Larz60+
it seem that is for the GUI installation, but I am after the silent installation as I am deploy to the PC.
just wondering is there a bug that it cannot create a path on the command shell.

ag248
thanks, I managed to found the soloution:


msiexec /i "python-2.7.11.amd64.msi" /passive /norestart ADDLOCAL=ALL

from
stackoverflow.com/questions/34214607/python-2-7-windows-silent-installer-msi-command-line-option-to-set-the-path

can close this thread now,Admin