Re: error while installing win32::Registry module

2010-03-31 Thread Alan Haggai Alavi
Hi, Can't locate Win32/Registry.pm in @INC (@INC contains: C:/strawberry/perl/lib C: /strawberry/perl/site/lib C:\strawberry\perl\vendor\lib .) at GETIP.pl line 1. BEGIN failed--compilation aborted at GETIP.pl line 1. It means that perl is unable to find the module Win32::Registry. So, you

error while installing win32::Registry module

2010-03-30 Thread Jyoti
Dear All, I was trying to run my script getip.pl . But when i run this script it gives following error C:\strawberry\perl\Testperl GETIP.pl Can't locate Win32/Registry.pm in @INC (@INC contains: C:/strawberry/perl/lib C: /strawberry/perl/site/lib C:\strawberry\perl\vendor\lib .) at GETIP.pl line

Re: error while installing win32::Registry module

2010-03-30 Thread Shlomi Fish
Hi Jyoti, On Tuesday 30 Mar 2010 09:50:39 Jyoti wrote: Dear All, I was trying to run my script getip.pl . But when i run this script it gives following error C:\strawberry\perl\Testperl GETIP.pl Can't locate Win32/Registry.pm in @INC (@INC contains: C:/strawberry/perl/lib C:

Re: error while installing win32::Registry module

2010-03-30 Thread Shlomi Fish
Hi Jyoti! Next time, please hit reply-to-all. You've sent a reply only to me. I'm CCing the list. On Tuesday 30 Mar 2010 11:42:30 Jyoti wrote: hello shlomi, yes...but i'm not able to run script in which I use win32::Registry. Well, as opposed to some languages (BASIC/VB-Classic, Fortran

Re: error while installing win32::Registry module

2010-03-30 Thread Sisyphus
- Original Message - From: Jyoti jyoti.bans...@gmail.com To: beginners@perl.org Sent: Tuesday, March 30, 2010 5:50 PM Subject: error while installing win32::Registry module Dear All, I was trying to run my script getip.pl . But when i run this script it gives following error C

Re: Win32 Registry

2003-12-22 Thread Bob X
$reg_obj-DeleteKey($sub_key_name); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

RE: Win32 Registry

2003-12-21 Thread Tim Johnson
: Jeff Westman; perl_help Subject: Re: Win32 Registry Tim Johnson wrote: Win32::TieRegistry will do what you want. use Win32::TieRegistry (delimiter = '/'); my $run = $Registry-{'HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Run'}; $run-{'MyApp'} = My Application; etc., etc

Re: Win32 Registry

2003-12-21 Thread R. Joseph Newton
Tim Johnson wrote: Easy there. Before we start using the 'V' word, lets just step back for a second. First of all, there is absolutely nothing wrong with putting a program in the Run key, and it is in fact a bad idea to tell people to categorically delete anything in that key. I would

RE: Win32 Registry

2003-12-20 Thread Tim Johnson
:[EMAIL PROTECTED] Sent: Fri 12/19/2003 10:12 PM To: perl_help Cc: Subject: Win32 Registry Hi, I need to access the Windows registry directly (not an exported 'reg' file). I am not familiar with Win32::Registry::File

RE: Win32 Registry

2003-12-20 Thread Jeff Westman
/19/2003 10:12 PM To: perl_help Cc: Subject: Win32 Registry Hi, I need to access the Windows registry directly (not an exported 'reg' file). I am not familiar with Win32::Registry::File. Basically, I am trying

Re: Win32 Registry

2003-12-20 Thread R. Joseph Newton
Tim Johnson wrote: Win32::TieRegistry will do what you want. use Win32::TieRegistry (delimiter = '/'); my $run = $Registry-{'HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Run'}; $run-{'MyApp'} = My Application; etc., etc. That looks like a good example of the crap that we

Win32 Registry

2003-12-19 Thread Jeff Westman
Hi, I need to access the Windows registry directly (not an exported 'reg' file). I am not familiar with Win32::Registry::File. Basically, I am trying to write a script that will do some 'cleanup' of known 'values' and 'data' strings that some uninstall applications neglect to cleanup. Any

Re: Win32 registry

2003-08-18 Thread Jenda Krynicky
at Win32::TieRegistry Win32::Registry Win32AIP::Registry the perldoc program will give you info about those, just run perldoc Win32::TieRegistry on the Command Prompt. (Or find the module in the HTML docs) You may want to have a look also at Win32::Registry2 at http

Win32 registry

2003-08-15 Thread Saadat Saeed
Hello, I am new to scripting (in general) and am an administrator of win32 based systems. I am deciding between Perl a number of other scripting technologies to standardise upon. The only thing that'll convince me for now is the abiltity to read and modify registries of machines connected over

Win32 registry question

2002-07-12 Thread Edouard Beaugard
Hello, Does anyone have a script that will query a registry key on a remote PC? I'm doing some maintenance work this would really help a lot. Thanks, Ed Beaugard -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Win32 registry question

2002-07-12 Thread Edouard Beaugard
Hello, Anyone have a script that will query the registry for the value of a particular key? I'm doing some maintenance work and haven't been able to figure out the TieHash way of accessing the registry. Thanks, Ed Beaugard -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Win32 registry question

2002-07-12 Thread Timothy Johnson
Here's a littel tutorial I wrote for a friend of mine. It shows the basics of setting/reading keys. -Original Message- From: Edouard Beaugard [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 11:02 AM To: [EMAIL PROTECTED] Subject: Win32 registry question Hello, Anyone have

Re: Win32 registry question

2002-07-12 Thread Jenda Krynicky
From: Edouard Beaugard [EMAIL PROTECTED] Does anyone have a script that will query a registry key on a remote PC? I'm doing some maintenance work this would really help a lot. Thanks, Ed Beaugard Assuming you installed my Win32::Registry2 patch : use Win32::Registry; $remoteHKLM = $HKLM