4

Possible Duplicate:
Run python script without DOS shell appearing

I have a python script that Windows Scheduler runs every 5 minutes for me. The script works fine but every time it runs it's loading up the console really quick on my desktop before it automatically closes. Does anyone know how to remove this behavior? I'd like it to just run in the background without me knowing.

Community
  • 1
  • 1
Splashlin
  • 7,225
  • 12
  • 46
  • 50

1 Answers1

10

Run it through pythonw instead of python (pyw if you're using the new launcher).

Cat Plus Plus
  • 125,936
  • 27
  • 200
  • 224