Advertisement
cigcag

killprocess-au3

Apr 20th, 2018
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.79 KB | None | 0 0
  1. Global Const $mb_ok = 0
  2. Global Const $mb_okcancel = 1
  3. Global Const $mb_abortretryignore = 2
  4. Global Const $mb_yesnocancel = 3
  5. Global Const $mb_yesno = 4
  6. Global Const $mb_retrycancel = 5
  7. Global Const $mb_canceltrycontinue = 6
  8. Global Const $mb_help = 16384
  9. Global Const $mb_iconstop = 16
  10. Global Const $mb_iconerror = 16
  11. Global Const $mb_iconhand = 16
  12. Global Const $mb_iconquestion = 32
  13. Global Const $mb_iconexclamation = 48
  14. Global Const $mb_iconwarning = 48
  15. Global Const $mb_iconinformation = 64
  16. Global Const $mb_iconasterisk = 64
  17. Global Const $mb_usericon = 128
  18. Global Const $mb_defbutton1 = 0
  19. Global Const $mb_defbutton2 = 256
  20. Global Const $mb_defbutton3 = 512
  21. Global Const $mb_defbutton4 = 768
  22. Global Const $mb_applmodal = 0
  23. Global Const $mb_systemmodal = 4096
  24. Global Const $mb_taskmodal = 8192
  25. Global Const $mb_default_desktop_only = 131072
  26. Global Const $mb_right = 524288
  27. Global Const $mb_rtlreading = 1048576
  28. Global Const $mb_setforeground = 65536
  29. Global Const $mb_topmost = 262144
  30. Global Const $mb_service_notification = 2097152
  31. Global Const $mb_rightjustified = $mb_right
  32. Global Const $idtimeout = -1
  33. Global Const $idok = 1
  34. Global Const $idcancel = 2
  35. Global Const $idabort = 3
  36. Global Const $idretry = 4
  37. Global Const $idignore = 5
  38. Global Const $idyes = 6
  39. Global Const $idno = 7
  40. Global Const $idclose = 8
  41. Global Const $idhelp = 9
  42. Global Const $idtryagain = 10
  43. Global Const $idcontinue = 11
  44. #RequireAdmin
  45. Local $process = ProcessList("CyberGhost.exe")
  46. For $i = 1 To $process[0][0]
  47.     ProcessClose($process[$i][1])
  48. Next
  49. Local $process = ProcessList("CyberGhost.Service.exe")
  50. For $i = 1 To $process[0][0]
  51.     ProcessClose($process[$i][1])
  52. Next
  53. Local $itimeout = 10
  54. MsgBox($mb_systemmodal, "Killprocess By MR.BB2018", "Ok copy all files to folder installed" & "", $itimeout)
  55. Exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement