Original User: clm42Well there is the esri toolbox way and the python way. The esri way is to add the script to a toolbox and then reference the tool in the second script the way you call any tool. The python way is to use subprocess to just launch the .py straight in your os. If option 1 is giving you problems move to option 2 and never look back. subprocess.Popen() will launch anything you want. This is an example from a script of mine that launches a PDF that is exported during the script run. It tells your os "hey open this file with this program." subprocess.Popen([r'C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe',r'C:\GIS Projects\TaxChange\Export\%s%s20%s taxable.pdf'% (max(datelist)[4:6],max(datelist)[6:8],max(datelist)[2:4])])