topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 1:20 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: [request] timed self closing program  (Read 6288 times)

ingkiller1

  • Participant
  • Joined in 2008
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
[request] timed self closing program
« on: August 28, 2008, 10:16 PM »
It would be great if anyone knows of a program or can make a program that simply loads at system startup and closes itself after a certain amount of time. It would also be great if it could run from the system tray. It doesn't need to control anything other than loading and closing itself. No GUI is needed other than a timer setting. The main thing is that it needs to start and close completely on its own.

Thanks,
ingkiller1

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: [request] timed self closing program
« Reply #1 on: August 28, 2008, 10:37 PM »
you can get this if you insert a Sleep command in an AHK script. just not sure how useful it is. :)

#SingleInstance force
#NoEnv

Sleep, 60000 ;wait for 1 minute
Return