I want a free application monitor that when detects certain keywords on window title by example, it closes the application (or prevents that it opens/install).

Nice extra will be if the program log the application activity too and internet sites accessed by any browser.

Thank you very much!

PS: I'm using Windows 7 Ultimate.

link|improve this question

63% accept rate
feedback

2 Answers

you could write some autoit scripts,

$WindowsTitle = 'Some Window Title'

While 1
    If WinExists( $WindowsTitle ) Then
        ProcessClose(WinGetProcess( $WindowsTitle))
    EndIf
    Sleep(10) 
WEnd
link|improve this answer
feedback

I think RescueTime does most of this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.