I want you to be able to enter the error log from the BIOS through the network

I want you to be able to enter the error log from the BIOS through the network. Looking at Win32_BIOS on MSDN, I did not see anything defining the error log. I would like to do this in C # with WMI, but I am open to suggestions. Is it possible?

Win32_BIOS does not have a property (I don’t know if this is the correct term) that contains the BIOS error log. Is there a library, API, etc. that I can use to output this information locally or from the network?

+4
source share
1 answer

As a rule, this cannot be done in such a way that it will be applied across the entire spectrum of motherboards, since the required commands and interfaces will be specific to the hardware.

Some motherboards may contain an API call that will allow this, however, I never came across it myself.

0
source

All Articles