http://www.perlmonks.org?node_id=321264


in reply to Re: (Not Quite Perl) Running Scripts from Right-Click Context Menu in Windows
in thread (Not Quite Perl) Running Scripts from Right-Click Context Menu in Windows

you can use right click - SendTo and $ARGV[0]. 1. create your script/exe: $inputfile = $ARGV[0]; .... 2. create link in SendTo folder pointing to your exe 3. now you can simple right click on any file and choose SendTo -> your exe. it works with perl2exe and perlapp, but not with PAR. -- strom