RE: Win32::AdminMisc?

2007-06-21 Thread Ari.Wilen
Web Site http://www.roth.net/ PPM Repository http://www.roth.net/perl/packages Terveisin - Best regards Ari -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Constable Sent: 21. kesäkuuta 2007 14:43 To: acti

RE: Parsing Config file

2007-06-13 Thread Ari.Wilen
Hi Michael perhaps Config-IniFiles.pm helps. At least it is easy. Terveisin - Best regards Ari -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Higgins Sent: 12. kesäkuuta 2007 20:14 To: activeperl@lists

RE: Newbie Help - installing SNMP

2006-09-07 Thread Ari.Wilen
Title: Newbie Help - installing SNMP Hi Spiro,   with Active Perl use PPM, this could be found in Your Windows Start Menu under ActiveState... Notice that these modules are revision dependent, so for new perl revision it takes some time when new versions for the modules are published.   For A

RE: starting/killing processes, newbie questions

2006-06-09 Thread Ari.Wilen
Hi Bernie, Bill L. already adviced You about how to handle processes in win environment, but to restart db instances or other programs in windows they normally exists as services with fixed names. And there is other tools for restarting etc. Try this. Win32::Service - manage syste

RE: SNMP/OID

2006-03-08 Thread Ari.Wilen
Hi Tfbsr Bertrand   SNMP is devided in 2 parts, generic and device specific. For specific part You need device specific description file, called Mib file. To study what can be read from each snmp service study/test  e.g. ws_ping_pro and GetIf softwares.   rgds  ari From: [EMAIL PROTEC

RE: Invoking perl scripts automatically based on time of day

2005-12-15 Thread Ari.Wilen
Hi Manish, for clarification, Perl script along with Perl is a aplication - not a service which is always running. There must be something else that will wake and trick the script going. There is no point as KJW wrote try to do it in perl. It could be done but it is an other story, a long one. Tr

RE: Good Free Perl IDE?

2005-11-17 Thread Ari.Wilen
Hi Sandeep, check http://www.cpan.org/ports/index.html and there http://open-perl-ide.sourceforge.net/ I have used several years with success. Br Ari -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sandeep Deshpande Sent: 17. marraskuuta 2005 9:05 To: ac

RE: Date Problem minus-ing a day

2005-08-01 Thread Ari.Wilen
Hi Eva, try Date::Calc modul. This helps with the problem with different number of days in month. Br Ari -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Denham Eva Sent: Monday, August 01, 2005 12:07 PM To: ActivePerl@listserv.ActiveState.com Subject: D

RE: get ideas what perl modules loaded in my server

2005-05-20 Thread Ari.Wilen
Start ppm and   ppm> query *     Br Ari From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eko BudihartoSent: Friday, May 20, 2005 7:37 AMTo: activeperl@listserv.ActiveState.comSubject: get ideas what perl modules loaded in my server Hi,

RE: Dhcp stats

2005-03-21 Thread Ari.Wilen
Hi Eric, try SNMP, I have used following code to get free available leases. - # Measure Free DHCP Leases ($session, $error) = Net::SNMP->session( -hostname => $DHCPserver, -community => $Community, -port => $Port)

RE: executing script at the starting of machine.

2004-10-28 Thread Ari.Wilen
Title: Signal Handlers PERL & NT Hello Sandeep,   I have experienced that this scheduled thing is not working in every case. Also the Startup alternative solution requires someone to log in. But if You need to do something when ever Your PC is starting there is in Windows ResourceKit Autoexnt

RE: Inventive ways to parse configuration files?

2004-06-07 Thread Ari.Wilen
Hi Tony, Have you tried Use Config::IniFiles; # Openin of Configuration File $ini = new Config::IniFiles( -file => $IniFile); # Pick up Parameters from .ini File $Param1 = $ini->val("Configuration", "Param1"); $Param2 = $ini->val('Configuration', 'Param2'); $Param3 = $ini->val('Configuration',