[python-win32] MSI calling python.exe as part of Install Sequence

2007-09-04 Thread Christopher Galvan
Hello all, I am in the process of creating a .msi that installs a couple of packages by extracting the .egg files to a directory and then running a python script that installs easy_install, if it's not already there, and then uses easy_install to install the packages. I have everything setup

Re: [python-win32] MSI calling python.exe as part of Install Sequence

2007-09-04 Thread Bruce at blazer
Hi Christopher,        You could try calling pythonw.exe instead of python.exe. This should run python without a command prompt. Bruce. Tuesday, September 4, 2007, 11:13:59 PM, you wrote: CG> Hello all, CG> I am in the process of creating a .msi that installs a couple of  CG> packages by