I tried this and it's not working:

Code:
$ProcArray		= $PList($Comp)
$WinDir = %WinDir%
$Sys = $WinDir + "\System32"

$x = 0

FOR EACH $Proc IN $ProcArray
? $Proc[$x] + @CRLF
$x = $x + 1
NEXT

sleep 5
exit



How would you loop through that array to view the results?