Sunday, November 20, 2016

How to make virus that toggles capslock on and off

How to make virus that toggles capslock on and off


Hi friends, this is a simple tutorial to create a virus that toggles Capslock of a system ON and OFF continouslyYour antivirus dont detect this is a virus, because it is not harmful and we are writing a script to achieve this task.You can use this to fool your friends.All you have to need is a notepad to make this virus.Ok now We can start making this virus step by step.


Step 1

Open your notepad and copy the following code to it

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Step 2

Save the file with extension as .vbs

Eg: virus.vbs


Thats it you are done. Open this file to see the magic

If you want to attach this file with any softwares read my article How to attach virus with softwares.

Now you can send this file to your friends and make fun of them.


NOTE: To kill this process goto taskmanager and kill wscript.exe or just restart your system


Available link for download