this command works (sort of):
$status1 = shell_exec("status.exe");
as does
exec("status.exe", $status1);
printf($status1);
the problem i have is, the .exe runs a popup window that i cant get rid of, so how do i pass an enter or carriage return to the program a few seconds after ive told it to run?
😕