Introduction
Add the following code in an MFC application or make Win32 Dynamic link library and then add the code. It works fine on Win9x only, it was not tested on XP/NT and hope it won't work on NT based tech.
The intension of this code is only for educational purposes. This code is for those who are too lazy to open their cabinet and remove the batter. No remote CMOS clearing routine is specified, so no questions should be posted for the same.
How To Use It
Come on, you know how to...
int __stdcall Clear_Cmos( )
{
_outp(0x70,0x2E); _outp(0x71,0xFF);
return 0;
}
History
- 27th November, 2003: Initial post