I tried using the accepted answer in this post, but it isn't working. Also, how would I add params? I'm using virtualenv and trying to activate that environment and then run my script.
Current Batch File - Does not execute last line
cd\
cd c:\mydir\scripts\
activate.bat
c:\mydir\scripts\python.exe c:\mydir\scripts\myscript.py %*
Desired batch file with params - Script accepts a 2D array
cd\
cd c:\mydir\scripts\
activate.bat
c:\mydir\scripts\python.exe c:\mydir\scripts\myscript.py [[p1,p2,p3,p4],[p1,p2,p3,p4]]