you can schedule the powershell script every one hour interval against specific machine
a = get-process | where-object {$_.WorkingSet -gt 60000000}
$a | out-gridview
something like this .. get the output in a text file and then analyse the output
you can schedule the powershell script every one hour interval against specific machine
a = get-process | where-object {$_.WorkingSet -gt 60000000}
$a | out-gridview
something like this .. get the output in a text file and then analyse the output