Jump to content

Search the Community

Showing results for tags 'process start program start'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hi All, I am trying to detect program/process end to key another program/process/action of some kind. Consider this rudimentary code: HotKeySet("{ESC}", "fini") local $ie_exists = false while 1 if processexists("iexplore.exe") then $ie_exists = True if not processexists("iexplore.exe") and $ie_exists then $ie_exists = False shellexecute("c:\program files\ccleaner\ccleaner.exe ","/auto") EndIf sleep(100) wend func fini() Exit endfunc This only handles one instance of the program and it is possible to miss the program within the sleep wait. This is the genesis of an idea that I have for writing a system monitor (sort of like the WIN SCHD facility with expanded functionality). I would like to key events by time, duration, interval, program start and program stop. The kinds of events that I would like to key are start/stop a program, sound an audible alarm/text, enforce a whitelist/blacklist. Incidentally, I have searched for things like "system monitor", "program start", "program stop", etc without success. Thanks, Kylomas
×
×
  • Create New...