tags:

views:

57

answers:

2

Hey

I have a scheduled task which runs a python script every 10 min

so it turns out that a script pops up on my desktop every 10 min

how can i make it invincible so my script will work in the background ?

I've been told that pythonw will do the work, but I cant figure out how to use it

any help ? thanks

A: 

Set the scheduled task to start the script as minimized.

Charlie Somerville
+2  A: 

I've been told that pythonw will do the work, but I cant figure out how to use it

Normally you just have to rename the file extension to .pyw. Then it will be executed by pythonw.

Bastien Léonard