Summary: Learn how to compare two processes with Windows PowerShell.
How can I use Windows PowerShell to find the differences between two instances of the same process
running on my system?
Use the Compare-Object cmdlet and specify specific properties to examine, such as cpu, id, vm, and ws.
Here is an example that uses two instances of Notepad:
$a = Get-Process -Id 6208
$b = Get-Process -Id 10744
Compare-Object -ReferenceObject $a -DifferenceObject $b -Property cpu, ws, vm, id