08-09-2023 01:57 AM
Hi everyone,
i want to get the cpu workload of my PC with this command: "wmic cpu get loadpercentage /value"
If i copy this command in my cmd, i get this response:
This would be good because i can work with it
But if i place the same command in my call executable:
Then i get this information in my variable:
Why is it like that and not the same text as if i use this command in cmd.exe?
Solved! Go to Solution.
08-09-2023 02:17 AM
I did it:
I forgot the /c before the argument
"/c wmic cpu get loadpercentage /value"