What I want to achieve is that I want to make sure that the script starts running on it's own in the background as the system starts and alerts at some specific point in the code. Now I was thinking of adding the script to the 'startup' folder of windows, but how do I make sure that it runs in background and is there any other method other than the 'startup folder'.
#some random code
....
if value==2:
alert()
...