Here is a thought !
Enter the correct password before system uptime reaches defined amount or tracker will start sending info home.
win+1 to enter pass
debug t key to see timer status
If is rough code but may help somebody or open other ideas
HTH
#singleinstance force
SetTimer, check_input, 3000
password=1234
uptime := A_TickCount ;
activate_time=100000
msgbox, %uptime%
if A_TickCount < %activate_time% && passset==
{
return
}
t:: msgbox, %A_TickCount%
return
#1::
InputBox, pass, Password, Enter your Password , hide
if ErrorLevel
MsgBox, Action Canceled.
if not errorlevel ; this just waits till the var is populated
{
passset=%pass%
;msgbox, %passset%
}
if passset=%password%
{
msgbox, tracker disactivated
ExitApp
}
else
{
msgbox, Wrong pass
}
return
check_input:
if A_TickCount > %activate_time%
{
msgbox, tracker activated
gosub, spymode
}
Return
spymode:
msgbox, now spying
ExitApp