Invoke developer command prompt from python

1.3k Views Asked by At

How can I invoke a Developer Command Prompt that comes with Visual Studio 2013 and execute my peverify commands in it from a python script. I am using python 3.4. I was able to execute commands in windows command prompt using subprocess but dont know how to do so from Developer Command Prompt.

Please help me out.My aim is to execute peverify command through a set of files in a given directory.

2

There are 2 best solutions below

1
On

I guess all you need is simply start

%comspec% /k ""C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat""
0
On

Here's one of the many ways to call it.

from subprocess import call
call(%comspec% /k ""C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat"", shell=True)

It can also be done with os.system() and quite a few others from subprocess depending on your needs.