Hello,
as discussed on http://www.passmark.com/forum/showth...st-Certificate
I would need the GUID UUID settings as well in the certificate.
We produce industrial computers and every system must have an GUID that matches the system serial number. We test our systems with Burn In Test on a USB stick
You can read the GUID settings in windows with the following lines
@echo off
echo Windows GUID Einträge
wmic bios get serialnumber / format:list >zeige.txt
wmic computersystem get OEMStringarray /format:list >>zeige.txt
wmic baseboard get Configoptions /format:list >>zeige.txt
wmic baseboard get serialnumber /format:list >>zeige.txt
type zeige.txt
would this be possible to integrate in the Burn in Test suite that we can test a system via USB stick and have the GUID noted in the certificate or is it already included and I was only unable to find it?
Thanks in advance
Gunter Lamprecht
as discussed on http://www.passmark.com/forum/showth...st-Certificate
I would need the GUID UUID settings as well in the certificate.
We produce industrial computers and every system must have an GUID that matches the system serial number. We test our systems with Burn In Test on a USB stick
You can read the GUID settings in windows with the following lines
@echo off
echo Windows GUID Einträge
wmic bios get serialnumber / format:list >zeige.txt
wmic computersystem get OEMStringarray /format:list >>zeige.txt
wmic baseboard get Configoptions /format:list >>zeige.txt
wmic baseboard get serialnumber /format:list >>zeige.txt
type zeige.txt
would this be possible to integrate in the Burn in Test suite that we can test a system via USB stick and have the GUID noted in the certificate or is it already included and I was only unable to find it?
Thanks in advance
Gunter Lamprecht
Comment