Get brand and model of the PC motherboard in java? [closed]

2

How can I find out the make and model of the Motherboard of the PC on which my Java program is running? thanks.

    
asked by Facundo 26.05.2017 в 16:07
source

1 answer

2

Hi, you can use the library jMWI then just do the query in this way :

String motherboardName = getWMIValue("Select Name from Win32_BaseBoard", "Name");

Here you can see how to get more data Win32_BaseBoard

    
answered by 26.05.2017 в 19:19