Advertisement
7_2009-2012 Security #235562

CMOS Password Clear Utility

Purpose:- Save Time and Labour while clearing CMOS setup password.. Now you donn'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 PC.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main(void)
{
printf("\n CMOS Clear Utility v1.0");
printf("\n Developed by: Nitin Jindal");
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;
}
Original Comments (3)
Recovered from Wayback Machine