|
I can install Expect successfully on Windows Vista. But spawning any process will fail the process. My program is as simple as:
use Expect;
{
my $exp = new Expect;
Expect->spawn("ls");
}
"ls" will fail, windows pop up message saying "ls.exe has stopped working". Actually if I spawn any executable, it will crash the same way.
I tried Windows Vista 32bit and Windows Vista 64bit, both fail the same way.
Please Help!!! |