I run a 'mstsc' program in win7 using python's subprocess:
>>> import subprocess
>>> p=subprocess.Popen('mstsc')
>>> p.pid
8884
However, the '8884' process doesn't exist when I check Windows' process moniter, and another 'mstsc' does exist. So I wonder if the 'mstsc' create another subprocess when calling subprocess. Please help?