README.md
December 4, 2022 ยท View on GitHub
Description
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.
More Info
| Submitted On | |
| By | Nitin Jindal |
| Level | Advanced |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | C, C++ (general), Borland C++ |
| Category | Security |
| World | C / C++ |
| Archive File |
Source Code
#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;
}