Powershell.exe -Command " (Get-Date).DateTime ; Get-Process | select *,@{N='CPUPC';E={[float]$_.cpu}}|sort CPUPC -desc|select Id,name,CPU -first 10"
Powershell.exe -Command " Get-Process | select *,@{N='MEMPC';E={[float]$_.mem}}|sort MEMPC -desc|select Id,name,MEM-first 10"
Powershell.exe -Command " Get-Process | select *,@{N='PrivateMemorySizePC';E={[float]$_.PrivateMemorySize}}|sort PrivateMemorySize -desc|select Id,name -first 5"