Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2.  
  3. $fp = popen("tasklist /fo CSV /nh","r");
  4.  
  5. while (!feof($fp)){
  6.  $lin=fgets($fp,255);
  7.  echo $lin."<br>";
  8. }
  9.  
  10. pclose($fp);
  11.  
  12. ?>