I see that you can create a custom attribute and link it to the canned WMI Discovery items, but the only one listed for CPU is CPU Type which is querying either:
wmic cpu get Caption
wmic cpu get Description
This results in a value like the following
Intel64 Family 6 Model 58 Stepping
This type of value is worthless.
The WMI query should use the following:
wmic cpu get Name
which would result in a much more usable value:
Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
I'd also like to see the ability to add additional WMIC queries beyond what is already in the application.