On 26-3-2010 22:58, wukong wrote: > newbie question, how do you run a .exe generated by MSVC++ in python > in windows? Use the subprocess module, for instance: subprocess.call(["notepad.exe", "d:/file.txt"]) irmen