Click here to Skip to main content
15,894,646 members
Home / Discussions / Hardware & Devices
   

Hardware & Devices

 
AnswerRe: Preemptive Multitasking Pin
Steve449-Jun-13 16:38
Steve449-Jun-13 16:38 
QuestionSo why does NDIS act as the PPM instead of the FDO? Pin
Erudite_Eric27-May-13 10:59
Erudite_Eric27-May-13 10:59 
AnswerRe: So why does NDIS act as the PPM instead of the FDO? Pin
Erudite_Eric1-Aug-13 1:35
Erudite_Eric1-Aug-13 1:35 
Questiongprs modem Pin
hermionee13-May-13 18:55
hermionee13-May-13 18:55 
AnswerRe: gprs modem Pin
Erudite_Eric16-May-13 0:27
Erudite_Eric16-May-13 0:27 
AnswerRe: gprs modem Pin
Erudite_Eric23-May-13 1:17
Erudite_Eric23-May-13 1:17 
GeneralRe: gprs modem Pin
Erudite_Eric7-Jul-13 23:39
Erudite_Eric7-Jul-13 23:39 
QuestionReplicating the CMOS contents from one PC to many others Pin
edinando4-May-13 10:33
edinando4-May-13 10:33 
CSS
Hello, I need help of friends or community experts with this problem:

We have about 100 PCs of the same brand and model manufactured in 2010. I need to change in all these PCs, periodically and manually, the system and user passwords through the BIOS and would like to automate this procedure through a software and had the following idea:

The motherboard manufacturer sent me a program to read and write the CMOS. I starts with the setting up these passwords on a single PC, saving all your content to a file and after with this program, I write de CMOS to the others machines. Detail: this program is to be used with a boot disk with DOS.

As I would like to carry this procedure through the central server, copying the file with new CMOS data to a specific folder existent on all machines. In each PC there is a process running on Windows XP SP3 that as soon as received the file, make the reading the contents, writing the new passwords in its CMOS, deletes the file from the folder and restarts yourself. The theory should work, but not, inclusive on the same machine where I created the file. What happens is that every time I update the CMOS, the changed settings are retained, but the passwords always come back clean, i.e. without any protection to access to BIOS.

Now I'm basing my work on one program called CmosPwd which can be found on the site www.cgsecurity.org, but no options works properly on the motherboard that we have. Our platform apparently uses the Award BIOS 6.00 PG as base to these chinese mother boards. Tried new contact with the manufacturer, but they do not provide a map of the structure of the CMOS. I discovered that, comparing the various files, passwords are not written in ASCII mode only 5 bytes at offset 0x40, that I believe to be your CRC, as showed below:

    CMOS DUMPS WITH PASSWORDS:

    SYSTEM: 11111111
    USER  : 22222222

    CMOS Bank 0:
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
        -----------------------------------------------
     0: 59 00 55 00 14 00 05 02 05 13 26 02 40 80 08 00
     1: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     3: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00
     4: 59 00 55 00 14 00 05 02 05 13 26 02 40 80 08 00
     5: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     7: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00

    CMOS Bank 1:
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
        -----------------------------------------------
     0: 59 00 55 00 14 00 05 02 05 13 26 02 40 80 08 00
     1: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     3: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00
     4: 59 00 55 00 14 00 05 02 05 13 26 02 40 80 08 00
     5: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     7: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00



    SYSTEM: AAAAAAAA
    USER  : BBBBBBBB


     CMOS Bank 0:
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
        -----------------------------------------------
     0: 51 00 01 00 15 00 05 02 05 13 26 02 00 80 08 00
     1: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     3: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00
     4: 51 00 01 00 15 00 05 02 05 13 26 02 40 80 08 00
     5: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     7: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00

    CMOS Bank 1:
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
        -----------------------------------------------
     0: 51 00 01 00 15 00 05 02 05 13 26 02 40 80 08 00
     1: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     3: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00
     4: 51 00 01 00 15 00 05 02 05 13 26 02 40 80 08 00
     5: 40 f0 00 00 02 80 02 00 04 14 00 00 00 00 00 00
     6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 fc
     7: 00 04 20 80 00 00 00 00 00 00 00 00 00 00 00 00




Has anyone had a problem like this and got a simple and cheap solution, or would have any hint to solution this? I appreciate some kind of help.

Thanks so much,

Edison Fernando.
Brazil.

AnswerRe: Replicating the CMOS contents from one PC to many others Pin
Jonathan Davies5-May-13 0:44
Jonathan Davies5-May-13 0:44 
AnswerRe: Replicating the CMOS contents from one PC to many others Pin
Dave Kreskowiak5-May-13 4:54
mveDave Kreskowiak5-May-13 4:54 
AnswerRe: Replicating the CMOS contents from one PC to many others Pin
dusty_dex6-May-13 8:55
dusty_dex6-May-13 8:55 
NewsRe: Replicating the CMOS contents from one PC to many others Pin
edinando6-May-13 15:51
edinando6-May-13 15:51 
GeneralRe: Replicating the CMOS contents from one PC to many others Pin
Dave Kreskowiak6-May-13 17:18
mveDave Kreskowiak6-May-13 17:18 
QuestionLPT buffer? Pin
oldhat3-May-13 3:53
oldhat3-May-13 3:53 
AnswerRe: LPT buffer? Pin
Jonathan Davies5-May-13 0:19
Jonathan Davies5-May-13 0:19 
QuestionHow to check System Cache?? Pin
VICK18-Apr-13 19:53
professional VICK18-Apr-13 19:53 
AnswerRe: How to check System Cache?? Pin
dusty_dex18-Apr-13 21:55
dusty_dex18-Apr-13 21:55 
GeneralRe: How to check System Cache?? Pin
Richard MacCutchan18-Apr-13 23:01
mveRichard MacCutchan18-Apr-13 23:01 
GeneralRe: How to check System Cache?? Pin
dusty_dex18-Apr-13 23:18
dusty_dex18-Apr-13 23:18 
GeneralRe: How to check System Cache?? Pin
Richard MacCutchan18-Apr-13 23:43
mveRichard MacCutchan18-Apr-13 23:43 
GeneralRe: How to check System Cache?? Pin
VICK21-Apr-13 18:45
professional VICK21-Apr-13 18:45 
GeneralRe: How to check System Cache?? Pin
dusty_dex21-Apr-13 22:03
dusty_dex21-Apr-13 22:03 
GeneralRe: How to check System Cache?? Pin
VICK22-Apr-13 0:51
professional VICK22-Apr-13 0:51 
GeneralRe: How to check System Cache?? Pin
dusty_dex22-Apr-13 3:05
dusty_dex22-Apr-13 3:05 
AnswerRe: How to check System Cache?? Pin
Randor 22-Apr-13 22:18
professional Randor 22-Apr-13 22:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.