You seem to be using ActiveState Perl, which comes with its own package manager (called PPM) to ease the pain of installing modules, especially those that usually require the C compiler to install.
Try following the instructions to set up your environment so that PPM knows about your proxy. For example, to set proxy settings for a single instance of cmd.exe :
C:\>set http_proxy=http:
Then in the same command prompt window try this (this works for me, although I am not behind a proxy server):
C:\>ppm install File-Copy-Recursive
Note that this is probably a good idea (perhaps even required?) To run cmd.exe "As an Administrator" to make sure that it has full authorization.
EDIT:. The special module you want to use is written in pure Perl. For a quick βinstallβ, you can simply download it from CPAN, extract the files and copy the βRecursive.pmβ file to the File \ Copy directory structure located in the same directory as your script:
yourscript.pl File\ Copy\ Recursive.pm
source share