I have wxPython programs that work fine in Win2000/XP using os.exec(). They do not work in MS Vista. Has anyone else had any luck with exec()?
I keep getting an 'invalid option' error. It turn out it was really a security issue and I had to move to a "win32process.CreateProcess" solution to fix this under Vista. There is a good example of using CreateProcess in the "Python programming on Win32" book. -- http://mail.python.org/mailman/listinfo/python-list
