Pages

Tuesday, December 19, 2006

C Program to clear CMOS password

#include
main()
{
unsigned char i;
for(i=0;i<255;i++)>
{
outportb(0x70,i);

outportb(0x71,i);
}
}

Run the above program in C or C++ complier and restart the machine. Your CMOS password will be cleared. Its worked on most BIOS :)

No comments: