http://qs321.pair.com?node_id=187892


in reply to Re: Re: X10 and Windows
in thread X10 and Windows

You could try calling system() like this:
system($command) == 0 or warn "System call failed with error # $?";
Or try using backticks:
print `$command`;
Between the two you hopefully should get something useful for diagnostics.