When I ran below command to get overall server CPU utilization 2 times in a row, it showed 28% and 99%.
I checked both times in Task Manager - Performance/Processes and found that in processes tab 99% CPU was used by "system idle processes".
wmic cpu get LoadPercentage /value
Now the questions are:
Idle process is not counted towards total load or else it would have to report always 99%. If all your programs need 50% of your CPU the other 50% are occupied by the idle process. There was probably another program running or initializing wmic
put load on the CPU.