Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #78004 > unrolled thread
| Started by | norman.ives@gmail.com |
|---|---|
| First post | 2014-09-18 00:22 -0700 |
| Last post | 2014-09-18 11:11 -0400 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
Controlling ALLUSERS property in non-interactive MSI installer (Python 3.4.1) norman.ives@gmail.com - 2014-09-18 00:22 -0700
Re: Controlling ALLUSERS property in non-interactive MSI installer (Python 3.4.1) Joel Goldstick <joel.goldstick@gmail.com> - 2014-09-18 11:11 -0400
| From | norman.ives@gmail.com |
|---|---|
| Date | 2014-09-18 00:22 -0700 |
| Subject | Controlling ALLUSERS property in non-interactive MSI installer (Python 3.4.1) |
| Message-ID | <32279730-e179-4ed2-b5d0-05be6e613d4d@googlegroups.com> |
Hey list I need to install a private copy of Python on Windows 7 and 8, for use only by one specific tool. The install should happen as part of the installation of the tool. I can control TARGETDIR and extensions (via ADDLOCAL) but I'm failing to install "just for this user". I've been trying variations on msiexec /i python-3.4.1.msi /qb! ALLUSERS=0 WHICHUSERS=JUSTME I found the WHICHUSERS property by inspecting the install log (/l*v). This is not working - I still end up with an install using ALLUSERS=1, according to the log. Can anyone comment on this issue? Typical users will not have admin rights, so I assume in that case ALLUSERS will default to 0, but I have not yet tested. Thanks for your attention!
[toc] | [next] | [standalone]
| From | Joel Goldstick <joel.goldstick@gmail.com> |
|---|---|
| Date | 2014-09-18 11:11 -0400 |
| Message-ID | <mailman.14107.1411053065.18130.python-list@python.org> |
| In reply to | #78004 |
On Thu, Sep 18, 2014 at 3:22 AM, <norman.ives@gmail.com> wrote: > Hey list > > I need to install a private copy of Python on Windows 7 and 8, for use only by one specific tool. The install should happen as part of the installation of the tool. > > I can control TARGETDIR and extensions (via ADDLOCAL) but I'm failing to install "just for this user". > > I've been trying variations on > > msiexec /i python-3.4.1.msi /qb! ALLUSERS=0 WHICHUSERS=JUSTME > > I found the WHICHUSERS property by inspecting the install log (/l*v). > > This is not working - I still end up with an install using ALLUSERS=1, according to the log. > > Can anyone comment on this issue? Typical users will not have admin rights, so I assume in that case ALLUSERS will default to 0, but I have not yet tested. > > Thanks for your attention! > -- > https://mail.python.org/mailman/listinfo/python-list You may want to check out this: http://virtualenvwrapper.readthedocs.org/en/latest/install.html VirtualEnv creates a python environment that is separate from that on the system, and is accessible by a user -- Joel Goldstick http://joelgoldstick.com
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web