All questions related to installations, configurations and maintenance of Advanced Host Monitor (including additional tools such as RMA for Windows, RMA Manager, Web Servie, RCC).
I have had good luck running perl programs from Linux. In Windows I seem to have to call a batch file to call the script instead of typing the script into the script manager. Has anyone conquered this?
If you have Perl installed and you see correct path to your perl interpreter in 1st line of the script (#!/usr/bin/perl), script should be started without special commands.
What exactly the problem (error message) do you see?
Unlike Linux, Perl is not installed by default on Windows. You have to install Active Perl first. After install you should call your script like this:
"D:\Perl\perl.exe script_name.pl"
Sorry, I thought you are asking about Linux.
If you are using Windows and you have installed Perl script engine, you may use csript.exe (Windows Script Host) to execute scripts.
You have to include the folder, where perl was installed, into PATH environment variable. After that you can call "perl" and type your script there or run particular perl script directly.