Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Install Python on Windows without Start Menu icons? (http://www.velocityreviews.com/forums/t806534-install-python-on-windows-without-start-menu-icons.html)

snorble 12-02-2011 06:34 PM

Install Python on Windows without Start Menu icons?
 
Is it possible to automate the Python installation on Windows using
the MSI file so it does not add a Start Menu folder? I would like to
push out Python to all of my office workstations, but I'd like for it
to be relatively silent from the user's point of view.

Pedro Henrique G. Souto 12-03-2011 02:01 PM

Re: Install Python on Windows without Start Menu icons?
 
On 02/12/2011 16:34, snorble wrote:
> Is it possible to automate the Python installation on Windows using
> the MSI file so it does not add a Start Menu folder? I would like to
> push out Python to all of my office workstations, but I'd like for it
> to be relatively silent from the user's point of view.


If you just want to run python scripts in those machines (not developing
in it), you can use something like py2exe [http://www.py2exe.org/].

It converts a python script to a standalone executable.

Good luck!
--
Att;
Pedro Henrique G. Souto
<pedro.h.souto@gmail.com>
╔═════════════╗
║ ²²²d○_○b²²² ║
╚═════════════╝

Wolfgang Strobl 12-05-2011 08:01 AM

Re: Install Python on Windows without Start Menu icons?
 
"Pedro Henrique G. Souto" <pedro.h.souto@gmail.com>:

>On 02/12/2011 16:34, snorble wrote:
>> Is it possible to automate the Python installation on Windows using
>> the MSI file so it does not add a Start Menu folder? I would like to
>> push out Python to all of my office workstations, but I'd like for it
>> to be relatively silent from the user's point of view.

>
>If you just want to run python scripts in those machines (not developing
>in it), you can use something like py2exe [http://www.py2exe.org/].


That doesn't answer the question.

Snorble might use "ORCA", a MSI editor from Microsoft.

http://forums.frontmotion.com/viewtopic.php?f=10&t=837

discusses a similar question for Firefox.

I haven't tried it myself, but would give it a try.

--
Thank you for observing all safety precautions

Lie Ryan 12-05-2011 12:52 PM

Re: Install Python on Windows without Start Menu icons?
 
On 12/05/2011 07:01 PM, Wolfgang Strobl wrote:
> "Pedro Henrique G. Souto"<pedro.h.souto@gmail.com>:
>
>> On 02/12/2011 16:34, snorble wrote:
>>> Is it possible to automate the Python installation on Windows using
>>> the MSI file so it does not add a Start Menu folder? I would like to
>>> push out Python to all of my office workstations, but I'd like for it
>>> to be relatively silent from the user's point of view.

>>
>> If you just want to run python scripts in those machines (not developing
>> in it), you can use something like py2exe [http://www.py2exe.org/].

>
> That doesn't answer the question.


But it may solve his problem, which is the whole point.

Often in discussions, an OP may ask the wrong question that does not
solve their problem or is a roundabout way to solve their problem (and
it may not necessarily be their fault that they asked the wrong
question). Which is why it is often best to describe the actual problem
in addition to asking a specific question.


snorble 12-05-2011 09:26 PM

Re: Install Python on Windows without Start Menu icons?
 
On Dec 5, 2:01*am, Wolfgang Strobl <ne...@mystrobl.de> wrote:
> "Pedro Henrique G. Souto" <pedro.h.so...@gmail.com>:
>
> >On 02/12/2011 16:34, snorble wrote:
> >> Is it possible to automate the Python installation on Windows using
> >> the MSI file so it does not add a Start Menu folder? I would like to
> >> push out Python to all of my office workstations, but I'd like for it
> >> to be relatively silent from the user's point of view.

>
> >If you just want to run python scripts in those machines (not developing
> >in it), you can use something like py2exe [http://www.py2exe.org/].

>
> That doesn't answer the question.
>
> Snorble might use *"ORCA", a MSI editor from Microsoft.
>
> http://forums.frontmotion.com/viewtopic.php?f=10&t=837
>
> discusses a similar question for Firefox.
>
> I haven't tried it myself, but would give it a try.
>
> --
> Thank you for observing all safety precautions


Thank you! I got it working using Orca. Initially I had removed all of
the rows from the Shortcut table and saved the .msi file, but the
resulting .msi file was only about 600 KB (the original .msi file is
about 15 MB). I had to create a .mst transform file, and that allows
Python to install without any Start Menu entries.

For reference, here's what I did. I opened the python-2.7.2.msi file
in Orca, then click the Transform menu, then New Transform. Then go to
the Shortcut table and highlight all of the entries and press the
Delete key, and acknowledge that it will delete all of the rows. Then
click the Transform menu and click Generate Transform and save it
(python-2.7.2-no-icons.mst in my case).

Once you have the .mst file, you can install it from the command line:

msiexec /i python-2.7.2.msi TRANSFORMS=python-2.7.2-no-icons.mst

Or to silently install:

msiexec /qn /i python-2.7.2.msi TRANSFORMS=python-2.7.2-no-icons.mst


All times are GMT. The time now is 08:14 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57