mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-04-18 09:49:58 -04:00
Updated 'ps' console command to put user name in second column
This commit is contained in:
parent
96455b8764
commit
8f041da307
@ -2173,9 +2173,10 @@ function createMeshCore(agent) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'ps': {
|
case 'ps': {
|
||||||
processManager.getProcesses(function (plist) {
|
processManager.getProcesses(function (plist)
|
||||||
|
{
|
||||||
var x = '';
|
var x = '';
|
||||||
for (var i in plist) { x += i + ', ' + plist[i].cmd + ((plist[i].user) ? (', ' + plist[i].user) : '') + '\r\n'; }
|
for (var i in plist) { x += i + ((plist[i].user) ? (', ' + plist[i].user) : '') + ', ' + plist[i].cmd + '\r\n'; }
|
||||||
sendConsoleText(x, sessionid);
|
sendConsoleText(x, sessionid);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user