which reg values modified my python installer under windows

Peter Hansen peter at engcorp.com
Tue Sep 6 15:21:12 EDT 2005


Philippe C. Martin wrote:
> I forgot to mention that I want to do it automatically from my application's
> installer.

Calling the "assoc" and "ftype" commands is one approach.  Try them with 
the existing settings to see how standard Python sets them up:

c:\> assoc .py
.py=Python.File

c:\> ftype Python.File
...

Use "assoc /?" or "ftype /?" for help.

-Peter



More information about the Python-list mailing list