Questions tagged [motherboard]

Anything related to a computer system's motherboard issues. The term motherboard refers to the main printed-circuit board of a computer system where usually the CPU is mounted together with the all the ancillary circuitry needed to interface with other subsystems, such as system memory, disk controllers, graphic cards, etc. DO NOT USE this tag for questions concerning exclusively hardware issues (they are off topic on SO).

Anything related to a computer system's motherboard issues. The term motherboard refers to the main printed-circuit board of a computer system where usually the CPU is mounted together with the all the ancillary circuitry needed to interface it with other subsystems, such as system memory, disk controllers, graphic cards, etc.

DO NOT USE this tag for questions concerning exclusively hardware issues (they are off topic on SO).

It should be used for questions about software interaction with the motherboard facilities.

See Wikipedia page about motherboards.

74 questions
3
votes
3 answers

Access Motherboard information without using WMI

I need to access motheroard identification (serial, manufacture, etc) in my application on multiple processes. I have been able to successfully query this using WMI, but I'm looking for an alternative. If you care to know situation: I have some…
Valentein
  • 847
  • 1
  • 8
  • 17
2
votes
0 answers

visual studio xaml editor lag

I am experiencing a huge amount of lag while using Visual Studio (2019, 2022) xaml editor. So much lag that the editor is frustratingly unusable. Visual studio itself is not slow, so none of the "improve performance" articles that I can find are…
Jason
  • 617
  • 9
  • 22
2
votes
2 answers

git installation failing, windows 10, CryptStringToBinaryW

Git for windows is failing to install, I've redownloaded numerous times. The install log looks like this : 2021-05-07 09:02:33.191 -- DLL function import -- 2021-05-07 09:02:33.191 Function name: CryptStringToBinaryW 2021-05-07 09:02:33.191 …
NimChimpsky
  • 46,453
  • 60
  • 198
  • 311
2
votes
0 answers

CPU serial number / motherboard serial number using C#

I am using this piece of code to get the CPU / motherboard serial number: macid = AuraRijndael.GetMacID(); ManagementObjectCollection mbsList = null; ManagementObjectSearcher mbs = new ManagementObjectSearcher("Select * From…
NRB
  • 95
  • 1
  • 7
2
votes
1 answer

Linux AMT Tool always throws 404 error

I am using the Linux command amttool to communicate with another PC on the local network with AMT installed in order to communicate with the machine independently of the disk system to obtain motherboard information. I have successfully been able to…
Shiri
  • 1,972
  • 7
  • 24
  • 46
2
votes
1 answer

linux motherboard dump recovery

I vaguely remember a kernel extension where the last few KB of logging was saved to some ram on suitable motherboards. This let you recover the dump from an oops/panic on the next boot. Very useful for server farms. Does anyone remember what that…
Dan Christian
  • 420
  • 1
  • 5
  • 15
2
votes
1 answer

How to get Processor and Motherboard Id?

I used the code from http://www.rgagnon.com/javadetails/java-0580.html to get Motherboard Id, but the result is "null". How can that be? Also I modified the code a bit to look like this to get ProcessorId: "Set objWMIService =…
Frank
  • 30,590
  • 58
  • 161
  • 244
2
votes
1 answer

How to implement new features in existing bios?

I wonder is it possible to implement new features in existing bios, in other words is there some libraries (like sdk) of motherboard which give you chance to make easy your own bios? What mean "supported motherboard" - is that include libraries for…
tonni
  • 1,225
  • 4
  • 19
  • 35
2
votes
3 answers

How to get motherboard ID without receiving empty strings?

I tried many things: //public static string GetMotherBoardID() //{ // string mbInfo = String.Empty; // //Get motherboard's serial number // ManagementObjectSearcher mbs = new ManagementObjectSearcher("Select * From Win32_BaseBoard"); // …
Kosmo零
  • 4,001
  • 9
  • 45
  • 88
2
votes
0 answers

Function of MSR 0x2E in recent Intel CPUs?

I've come accross a feature of modern Intel CPUs called MSR 0x2E that is somehow involved in power management functions. I figured that MSR stands for Model Specific Register, and I guess this MSR has been there at least since the Sandy Bridge…
jdm
  • 9,470
  • 12
  • 58
  • 110
2
votes
0 answers

How can I get my motherboard's ID, using Java, in Linux, Mac, and Solaris?

How can I get my motherboard's ID, using Java, in Linux, Mac, and Solaris? I'd prefer a cross-platform solution. I found a way that works in Windows: String result = ""; try { File file = File.createTempFile("realhowto",".vbs"); …
Nathan F.
  • 3,250
  • 3
  • 35
  • 69
2
votes
1 answer

Obtaining additional information with WMI

I have a question, if you can get the HD speed (RPM), if memory is DDR1, DDR2, DDR3, if the HD is SATA or IDE socket and chipset and motherboard ... If it is possible to phase it in Delphi Thank You
Jose Eduardo
  • 487
  • 9
  • 27
2
votes
1 answer

From Standard Out to My PC Screen

In any introductory course the first thing you learn is that System.out.println, printf, etc. prints to Standard Out and pops up on your screen. I would like to know all of the detailed steps in that process. In short I know the following are…
John K
  • 859
  • 1
  • 8
  • 16
1
vote
2 answers

Get motherboard information

I'm starting to write an application in Java that gets all the hard drive info, memory info, processor info, and prints it out. I was wondering if it was possible to also get all motherboard information. Like if there are any video cards, network…
dsta
  • 253
  • 1
  • 6
  • 15
1
vote
0 answers

Getting motherboard sensor values using OpenHardwareMonitor in c#

Using the Computer class I successfully retrieved CPU sensor values. However, when it comes to Mainboard, sensor values are not shown every time I run the application. In the most cases the information is not shown, but sometimes it is. What could…
Marko
  • 11
  • 4