Answer the question
In order to leave comments, you need to log in
Monitor process RAM usage?
Task: start the process and track the amount of RAM allocated for this process.
Everything is done in PowerShell.
The script is like this:
$process = new-object System.Diagnostics.Process;
$process.StartInfo.filename = "[путь к exe]";
$process.Start();
write-host $process.WorkingSet;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question