Jump to content

Process Watcher


Recommended Posts

I created an AutoIt script when I had a spyware attack so I could track it down.

This basically notifies you of a starting or stopping process. It has 3 modes of notification.

The included ReadMe.txt file contains important information on the operation of the script.

Yes, I am aware that the ReadMe is about as big as the script. The script could be smaller if I removed the blank lines and comments, but I guess it doesn't matter.

Link to comment
Share on other sites

HI,

nice one. Haven't tested every option, but looks good.

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

  • 2 weeks later...

Autoit Wrappers... has a small one i made before

; Notify and Name of any new process started
; Author Valuater

Dim $list = ProcessList()

AdlibEnable("chk_Process")

While 1
    Sleep(20)
WEnd

Func chk_Process()
    $list2 = ProcessList()
    If $list2[0][0] > $list[0][0] Then
        MsgBox(262208,"New Process", $list2[$list2[0][0]][0] & "  ")
        $list[0][0] = $list2[0][0]
    Else
        $list[0][0] = $list2[0][0]
  ; if you close processes - this resets the list
    EndIf
EndFunc

8)

NEWHeader1.png

Link to comment
Share on other sites

Wow, 95 downloads. I'm suprised this had so many hits.

@Valuater: That is similar to how I started. I needed something to track new executables, but then I decided to add more information. It evolved into this overpowering log utility.

If anyone has any suggestions, I'd like them. So far, I've been thinking of adding a filter to stop showing processes that run often or things that you know are safe. Also a full path of processes would be good. Maybe I'll write a full-fledged C++ application for that.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...