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
Riepilogo AI: 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.
Codice sorgente
#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;
}
Commenti originali (3)
Recuperato da Wayback Machine