Python script to windows CMD

Hi there,

I’m trying to get blender to send a job to Autodesk Backburner through the windows commandline.
I’ve got a working .bat file, and now i’m trying to create a script/addon that sends pretty much the same command from blender itself (without having to modify a .bat file by hand)

The main problem i’ve come across is that i cant figure out how to send a command to CMD and run it
If anyone has a solution for this, please help me out :slight_smile:

This looks like what you’re after. http://stackoverflow.com/questions/14894993/running-windows-shell-commands-with-python

Scroll down to the second answer, and you’ll see:
import os
os.system(‘blah blah’)