This commit is contained in:
jbousquie 2016-12-09 14:43:37 +01:00
parent 908274a7e4
commit 28cf92e4f1

View File

@ -2,11 +2,12 @@
// Ce script renvoie au format json la liste des tâches en cours sur une machine $host
header('Content-type: application/json; charset=utf-8');
include('lib.php');
$domaine = "IUT";
$hote = $_GET['host'];
// Récupérer sur un POST, récupérer en https
// ajouter une clé partagée à tester
//$command = "tasklist /fo csv /nh /v /u IUT\Administrateur /p ".Decrypte($mdp, $cle)." /s ".$hote." | findstr IUT | sort";
$command = "tasklist /fo csv /nh /v /u IUT\Administrateur /p ".Decrypte($mdp, $cle)." /s ".$hote." | sort";
$command = "tasklist /fo csv /nh /v /u $domaine\Administrateur /p ".Decrypte($mdp, $cle)." /s ".$hote." | sort";
//$command = 'task.bat "'.Decrypte($mdp, $cle).'" '.$hote;
$res = array();
$tab_task = array();