February 23, 2025

Telugu Tech Tuts

TimeComputers.in

Notepad Hacking tutorials in telugu

Hacking tutorials in telugu

Constantly Repeat Messages:-

Paste the following code in the notepad file:

@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN

Save the file with any file name but with .bat as extension and close it. For eg.message.bat

Test Your Anti-Virus:-

You can also test your anti virus program for its effectiveness using a simple notepad trick.
Follow the steps below to know more:

Copy the code give below in the notepad file:

X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

Save it as “Anyname.exe” like testvirus.exe

As soon as you save this file, your anti virus program will detect the file (virus) immediately and will attempt to delete it. If this happens then your Antivirus is working properly. If not, then its time to look for some other reliable program.

 Matrix Effect:-

Type in Notepad :-

Copy the below mentioned text in your notepad file:

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save the file with .bat extension like Matrix.bat

Toggle Keyboard Button Simultaneously:-

1. Caps Lock Key
Open Notepad.
Paste the following code in the notepad file:

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

Save the file with anyname and .vbs extension. and close it.
Now open the newly created file and see how the caps lock key behaves on your keyboard!

Type “You are a fool” Continuously:-

Open Notepad.
Paste the following code in the notepad file:

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop

Save the file with any name but with .vbs extension and close it.
Ope the file and see how it makes you type!

Convert Text Into Audio Using Notepad:-

Open Notepad.

Copy and paste the below mentioned code :

Dim message, sapi message=InputBox(“Enter your text for conversion–Hacking-world.tk”,”Hover pc Hacks Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message

Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs