git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
22 lines
488 B
PHP
22 lines
488 B
PHP
<?php
|
|
/*
|
|
$template=file_get_contents('ReportTemplate.html');
|
|
|
|
$rep=array();
|
|
$rep['running processes']=shell_exec('tasklist');
|
|
$rep['services']=shell_exec('sc query');
|
|
$rep['system path']=shell_exec('path');
|
|
$rep['environment variables']=shell_exec('set');
|
|
|
|
$report=array();
|
|
|
|
foreach ($rep as $test=>$results){
|
|
$test=ucwords($test);
|
|
$report[]=str_replace(array('[heading]','[content]'),array($test,$results),$template);
|
|
}
|
|
|
|
$report=join('',$report);
|
|
|
|
echo $report;
|
|
*/
|
|
?>
|