Wednesday 1 October 2014

CMD Color Codes

TRY OUT THESE AMAZING COLORS IN CMD

  • Click on start
  • Run cmd
  • Type "color xy"     (where "x" refers to the color of background n"y" refers to the color of the foreground).




Wednesday 30 July 2014

SYSTEM HANGING, USING CMD

(MODERATE)
  • Open Command Prompt Window infinite times untill your Computer Crashes
  • Just copy and paste the below codes to make your computer crash. (After you will restart your computer, it will be back to normal)
@echo off
:loop
start cmd.exe
goto loop
  • "cmd.exe" can be changed to any other program also.
  • Extensions of different files that can be opened using this program
  • For Calculator use "calc.exe".
  • For My Computer use "explorer.exe".
  • For notepad use "notepad.exe"
  • For MS Word files use "winword.exe".
  • For Google Chrome use "chrome.exe".
  • For Task Manager use "taskmgr.exe". and so on...

Friday 18 July 2014

FRIGHTEN YOUR VICTIM WITH THIS VIRUS

(SAFE)


  • Let’s start, open your Notepad and type this code :
X=MsgBox("Message Description",0+16,"Title")
  • Now save it as .vbs  files, make sure you
  • Select All types and the extension of your filename should be “.vbs”. for example,Game.vbs or My Computer.vbs.
  • Once you save it, open it up and you should get the pop-up message box.
  • This basic code tells the computer that when the following file is opened, it will display a fake error message box with the title as “Title” and the description as“Message Description“. But that can be changed so if you want to type a different title or description, go ahead.
  • This is a Visual Basic Code, which means you are able to type in Visual Basic Scripts using Notepad.
  • Anyways, the numbers in that code can be changed. Let me explain you the code:
X=MsgBox("Message Description",0+16,"Title")
  • Message Description: Write some warning message you want to display (In above image the description is “Hacker has killed your computer” ).
  • Title: you can write any title (in above image the title is “Virus Detected”).
  • The numbers: In above image 0+16 is used. Well, it is a combination of two different codes. You can write any numbers from 0,1,2,3,4 instead of 0 (before the ‘+’ symbol) and here is the meaning of each number:

0,6 = Ok Button
1 = Ok/Cancel Button
2 = Abort/Retry/Ignore button
3 = Yes/No/Cancel
4 = Yes/No
5 = Retry/Cancel

  • You can write any numbers from 16,32,48,64 instead of 16 (after the  ‘+’ symbol) and here is the meaning of each number:

16 – Critical Icon(cross sign)
32 – Warning Icon((?) mark)
48 – Warning Message Icon
64 – Information Icon

  • Now, if you want to create multiple Message Boxes, simply duplicate the line as shown below :

X=MsgBox(“ dont worry i'll b formatting your computer/c: drive in just
few seconds. wait and watch”,0+16,”Title”)

X=MsgBox(“ dont worry i'll b formatting your computer/c: drive in just
few seconds. wait and watch”,0+16,”Title”)
  • So this will display the message pop-up two times ! It’s really easy, message description will be= don't worry i'll b formatting your computer/c: drive in just few seconds. wait and watch.
This file does not cause any harm to your system....it will just display those messages which u have written in the notepad file and saved them in the form of a ".vbs file"


Tuesday 1 July 2014

Find Windows XP CD Key Inside CD

Are you still finding Your Windows XP Product key?

Lets see how easily you can get it…

To get the Windows XP CD key, follow these steps.


1. Insert your Windows XP CD into your computer's CD/DVD ROM/ RAM.
2. Now, browse your Windows XP CD and find the folder "I386".
3. Inside "I386" folder, find the file named as "unattended.txt".
4. Open "unattended.txt" by using notepad.
5. At last, keep scrolling of the opened file and you will get Windows XP CD key.

Its most helpful for the people who do not wish to buy XP or those who lost the serial key of Windows XP CD. They can find the Windows XP CD key in this way.

Shut-down The Computer After Conveying Any Message

(MODERATE)
This one is kind of an annoying trick and if used unknowingly can certainly cause problems (I am serious). What this trick does is, after conveying a (any) message it shuts down the computer without any confirmation. In order to create the Shutdown file, follow the below mentioned steps:

  • Open Notepad.
  • Paste the following code in it:
@echo off
msg * Its time to get some rest.
shutdown -c “Error! You have to take rest! Byeeeeee” -s

  • Save the file with any name but with ".bat" extension and close it. For eg. TakeRest.bat