For anyone that stumbles upon this page, none of the solutions here worked for me. I found this is the way to do it (in a batch file):
@for /f "skip=1" %%p in ('wmic cpu get loadpercentage /VALUE') do ( for /F "tokens=2 delims==" %%J in ("%%p") do echo %%J)