1
--mousemove.vbs
set a = createobject("wscript.shell")
msgbox "start up"
for i = 1 to 999
wscript.sleep 1000*60*4
a.sendkeys "{NUMLOCK}"
a.sendkeys "{NUMLOCK}"
next
--kill_target.vbs
you can kill any program if you want .
eg.chrome.exe
- wscript.exe
kill_target = "wscript.exe"
msgbox "kill the vbscript"
for each ps in getobject("winmgmts:¥¥.¥root¥cimv2:win32_process").instances_
if Ucase(ps.name)= Ucase(kill_target)then
ps.terminate
end if
next
ctrl+shift+esc