Advertisement
5_2007-2008 Security #190526

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

Tóm tắt bởi 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.

Mã nguồn
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;
}
Bình luận gốc (3)
Được khôi phục từ Wayback Machine