List motherboard device information

You can use below script to get motherboard details,

import os;
os.system(‘C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe “Get-WmiObject Win32_BaseBoard” | find /v /i “Error”’);

sample output would be,

@mkannan,

There’s a small little error in this one.
On the path to powershell, the word powershell is spaced in between the two l’s.

'C:\Windows\System32\WindowsPowerShel l\

'C:\Windows\System32\WindowsPowerShell\

Again, thanks for the script.

@Ming

Thanks for your feedback. Let me know if you have any other script requirement.

Kannan