in reply to Re: "Send To" Perl script in Windows (was: Windows platform question)
in thread Windows platform question

I missed your desire for it to work with multiple files. Use %* instead of %1 in the batch file.
@echo off :: This is "parse_excel.bat" perl "C:\Path To\parse_excel.pl" %* pause

The names of the selected files will be present in @ARGV

for my $xl_file_name (@ARGV) { ... }