Hi All.
I found some hints to get CPU MHz Infos. All of them (until now) based on the VM host values. They are wrong from guest point of view. The host values are more less statistic values, if I follow those example:
Get-VM "<guest name>" | Select-Object -Property Name,@{Name='MaxHostCpuMhz';Expression={$_.NumCpu * $_.VMHost.CpuTotalMhz / $_.VMHost.NumCpu}}
ProcessorType: Intel(R) Xeon(R) Gold 6146 CPU @ 3.20GHz
If I have a look on the guest side with dmiodecode --type processor, I have complete different values:
Manufacturer: GenuineIntel
Version: Intel(R) Xeon(R) CPU E7- 4807 @ 1.87GHz
How can I get the real / current guest values with the Power CLI and there options?
Thanks for a short example, I guess with Invoke-Script... A link to more detailed tutorial using Invoke-Script on guest systems would perhaps help also.
Volker