Ad Code

Ticker

6/recent/ticker-posts

Top 4 Notepad Tricks and Hacks | vbs Tricks .bat Tricks Notepad Fake Virus Script | with code!

    Hey guy! I am back with another cool post! In this post, we will see that how we can do some awesome VBS script tricks. That you should know. It's very easy to do! So let's get started without any further delay!!




1. Keyboard Dance

So our first trick is Keyboard Dance. This is a simple VBS code that presses the CAPSLOCK, NUMLOCK, and SCROLLOCK key multiple times repeatedly! So here is its code.

Set wshShell = wscript.createObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop {codeBox}

What this code basically does that, it presses the CAPSLOCK, NUMLOCK, and SCROLL LOCK again and again repeatedly!! So it doesn't affect the computer system at all. No need to worry! The hackers also can do the same, so please don't panic. 

2. Notepad Diary

This is a very good and free way to create a diary or registry! It's very simple to create. Just type .LOG on the notepad file and save the file with the Normal (  .txt ) file. After that, whenever you will open the file it will note the time and date. 

.LOG {codeBox}

3. 100 files prank!

This is a good but messy prank! That will irritate you! It will create multiple files and duplicate them every 30 seconds.

echo off
:echo

echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
echo Your computer system has been hacked by VectorX!! > virus%random%.txt
{codeBox}

4. Optical Disk In-Out prank!

This prank is one of my favorites! So let's see the code. You can also do this!!


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 {codeBox}


So hope you liked the video and the post. If yes then please give me a link and Subscribe to my channel. See you in the next post.

GOODBYE!!


Post a Comment

0 Comments

Ad Code