Sorry, I forgot.
You don't have Perl built in to the system, I'd suggest going to
http://www.activestate.com and downloading their Perl version. The exact link is
http://downloads.activestate.com/ActivePerl/Windows/5.6/ActivePerl-5.6.1.631-MSWin32-x86.msi
I gave you the link to skip the registration garbage, but that's optional anyway. It's about an 8MB download, but free.
Double click on that to install (Duh
). Once it is all done, do everything I already mentioned, but skip the chmod step. If you have your file associations set properly, you can just type in the filename at a command prompt. Even if you don't have file associations set up, you can type
perl filename to run the script.
For file associations, I usually set it to Edit as default. Then I can double click on my Perl scripts and edit them (with your favorite text editor (I can send recommendations if you want)). If you don't change this yourself, the file is automatically run via the Perl interpreter (like running perl filename). The problem with that is that the command prompt window doesn't stick around unless it needs input, so most scripts are pretty useless. I use the command prompt method myself...
If you want further explanation of any of this, feel free to ask -- I've kind of glossed over a lot of detail that I think you can figure out on your own.