Great Product? I'm setting up my inital display and I was wondering if there is a way to show the full name and speed of the CPU? Example: CPU Model: 8 Core 2.80 Ghz Intel Core i7 Thank you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2014-01-27
I must not have made myself clear. I did what you listed in your start guide and I go a listing of "x86 Family 6 Model 23 Stepping 6, GenuineIntel" which is okay but is not helpful if I'm looking at a system and want to know if it is an i3, Celeron, or Dual Core processor. I'm looking for the Processor name listed on the Windows Computer Systems page along with System Type (32 or 64 Bit). I figured that there was a code for these listing that I could insert into your out.conf file. Thanks again.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Great Product? I'm setting up my inital display and I was wondering if there is a way to show the full name and speed of the CPU? Example: CPU Model: 8 Core 2.80 Ghz Intel Core i7 Thank you.
Hello,
If you are on Windows Edit CUSTOM/CLIENT/WINDOWS/OUT.CONF, uncomment the line:
CPU Model: X echo $PROCESSOR_IDENTIFIER
Please, read the manual for a fast start:
https://sourceforge.net/p/bginfo4x/wiki/BGINFO4X/#quick-start-guide
I must not have made myself clear. I did what you listed in your start guide and I go a listing of "x86 Family 6 Model 23 Stepping 6, GenuineIntel" which is okay but is not helpful if I'm looking at a system and want to know if it is an i3, Celeron, or Dual Core processor. I'm looking for the Processor name listed on the Windows Computer Systems page along with System Type (32 or 64 Bit). I figured that there was a code for these listing that I could insert into your out.conf file. Thanks again.
Try this:
CPU Model: X wmic cpu get name | tail -2 | head -1
OS Architrecture: X wmic os get OSArchitecture | tail -2 | head -1
http://4x4w.blogspot.com.es/2013/12/wmi-commands-with-bginfo4x.html
Sweet! You are the man. That is perfect. Keep up the great work.
Thanks.