For example,runnig "ipconfig" command through perl script and printing it on web browser.
Above code works fine in Windows Server 2003,but $output is null in Windows Server 2008 R2.
Done necessary settings in IIS for perl,is there additional settings in windows server 2008 R2 for perl?
Is there a way to make above mentioned code to work in Windows Server 2008 R2.
Using perl 5.6 version.
Appreciate your help.
Code:
my $cmd = "ipconfig"; my $output = `$cmd`; print $output;
Done necessary settings in IIS for perl,is there additional settings in windows server 2008 R2 for perl?
Is there a way to make above mentioned code to work in Windows Server 2008 R2.
Using perl 5.6 version.
Appreciate your help.
Comment