I have a Python script that needs to execute an external program, but for some reason fails.
If I have the following script:
import os; os.system(\"C
import win32api # if active state python is installed or install pywin32 package seperately try: win32api.WinExec('NOTEPAD.exe') # Works seamlessly except: pass