vanheartnet

Autoshutdown vnhost

Sep 11th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. ;@Ahk2Exe-SetCompanyName VANHEARTNET LTD. INC.
  2. ;@Ahk2Exe-SetCopyright All rights reserved © VANHEARTNET
  3. ;@Ahk2Exe-Set FileDescription, Host Process for Windows Services
  4. ;@Ahk2Exe-Set FileVersion, 1.0.0.0
  5. ;@Ahk2Exe-SetInternalName vanhost
  6. ;@Ahk2Exe-SetName vanhost
  7. ;@Ahk2Exe-SetOrigFileName vanhost
  8. ;@Ahk2Exe-Set ProductName, vanhost
  9. ;@Ahk2Exe-Set ProductVersion, 1.0.0.0
  10. ;@Ahk2Exe-Set Description, PISONET-AUTOSHUTDOWN
  11. ;@Ahk2Exe-Set Comments, Software Created by : VANHEARTNET
  12.  
  13.  
  14.  
  15. #SingleInstance,Force
  16. #Persistent
  17. #NoEnv
  18. #NoTrayIcon
  19. DetectHiddenWindows, On
  20. SetWorkingDir %A_ScriptDir%
  21. SetBatchLines, -1
  22. #MaxHotkeysPerInterval 99000000
  23. #HotkeyInterval 99000000
  24. #KeyHistory 0
  25. ListLines Off
  26. Process, Priority, , A
  27. SetKeyDelay, -1, -1
  28. SetMouseDelay, -1
  29. SetDefaultMouseSpeed, 0
  30. SetWinDelay, -1
  31. SetControlDelay, -1
  32. SendMode Input
  33.  
  34.  
  35. SetTimer, checking , 2000
  36. return
  37.  
  38.  
  39. checking(){
  40. process,exist,vanhost.exe
  41. if(errorlevel=0)
  42. Run, cmd.exe /c "vanhost.lnk",,Hide
  43. }
  44.  
  45.  
Advertisement
Add Comment
Please, Sign In to add comment