B
bkimelman
I am using a Windows XP PC.
I am using Activestate Perl version 5.8.6.
I installed the AdminMisc module as follows from the DOS command line :
D:\ ppm install
http://www.orth.net/perl/packages/win32-adminmisc.ppd
The install went fine (i.e. no errors from PPM)
Here is the test script I wrote
========================================
#!/usr/bin/perl -w
use strict;
use Win32::AdminMisc;
my ( $status , $total , $free );
($total,$free) = Win32::AdminMisc::GetDriveSpace("c:\\");
exit 0;
=================
When I run the test sc ript from the DOS command line I receive an
error message as follows :
This application has failed to start because MSVCR70.dll was not
found. Re-installing this application may fix this problem.
Does anyone have any ideas about hwo to fix this problem ?
I am using Activestate Perl version 5.8.6.
I installed the AdminMisc module as follows from the DOS command line :
D:\ ppm install
http://www.orth.net/perl/packages/win32-adminmisc.ppd
The install went fine (i.e. no errors from PPM)
Here is the test script I wrote
========================================
#!/usr/bin/perl -w
use strict;
use Win32::AdminMisc;
my ( $status , $total , $free );
($total,$free) = Win32::AdminMisc::GetDriveSpace("c:\\");
exit 0;
=================
When I run the test sc ript from the DOS command line I receive an
error message as follows :
This application has failed to start because MSVCR70.dll was not
found. Re-installing this application may fix this problem.
Does anyone have any ideas about hwo to fix this problem ?