Hey everyone, I'm working on a script which uses subprocess to launch a bunch of installers, but I'm getting problems with .msi installers although .exe ones work fine. The output I get is this:<br><br>>>> import subprocess<br>
>>> p = subprocess.Popen('python.msi')<br>Traceback (most recent call last):<br> File "<pyshell#1>", line 1, in <module><br> p = subprocess.Popen('python.msi')<br> File "C:\Python25\lib\subprocess.py", line 593, in __init__<br>
errread, errwrite)<br> File "C:\Python25\lib\subprocess.py", line 793, in _execute_child<br> startupinfo)<br>WindowsError: [Error 8] %1 no es una aplicación Win32 válida<br>>>> <br><br>Has this ever happen to any of you? The idea is to get this running, make it an exe (with py2exe) and use it whenever I need to install my whole development environment in the right order.<br>
<br>Thanks in advance to all of you.<br><br><br>Alonso Sebastian.<br>