Software that shuts down a program after a period of time.

lanj03

New Member
Hello,
I'm new here, so feel free to transfer my post to the appropriate section. I have tried to find a software that could shut down a program after a dertermined period of time, but my research have been unsuccessful. I'm looking for a software that could allow, for example, a program or a list of programs to run 2 hours a day in order to control gaming usage.
Thank you,
John
 

S.T.A.R.S.

banned
A year ago I have made a free program which terminates the process of any program you want after a certain period of time.
I am not sure if I still have the code of that program.I will have to take a look and let you know...

If I don't have it then you will need to give me some time to make it since I have tons of other things I have to do in the meantime.

Meantime...you can try to find some other free software which does the same thing.I will see if there are any and if not,I will make you one as soon as I find enough free time.

You can also make a batch script which should do it.Something like:

start yourprogram.exe
timeout /t 60
taskkill /im yourprogram.exe /f
 
Top