Monday, October 18, 2010

CLEAR CMOS PASSWORD USING C PROGRAM

Save Time and Labor while clearing CMOS setup password. Now you don’t need to open your computer and make jumper setting for clearing CMOS setup password. Here is the utility for that purpose. 100% tested on IBM or IBM compatible. To clear the password write the following code in c program compiler and compile it.


#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main (void)
{
printf(“\n CMOS Clear Utility Program”);
printf(“\n Developed by Smartpc Technologies pvt ltd”);
printf(“\n Press any key to clear CMOS”);
getch();
outportb(0x70, 0x2E);
outportb(0x71, 0xFF);
printf(“\n CMOS cleared.. Please restart your PC”);
return 0;
}

Once you successfully compile the program restart your computer. You will find that there will be no password for BIOS.

No comments:

Post a Comment