RE: windows registry

2005-08-29 Thread Timothy Johnson
>Start with a CPAN search. >http://search.cpan.org/search?query=windows+registry&mode=all >I see several promising ones at the top of the list. Look them over and >decide which you think should best meet your needs. Don't use either of the first two, they're not what you're looking for. Tie:

Re: windows registry

2005-08-29 Thread Chris Devers
On Mon, 29 Aug 2005, Tim Wolak wrote: > This is my first attempt at using perl to work with a windows system > and need some help. I need to check for some registry entries made by > a virus and remove them. Which is the best module for this and do you > know of any example code I can look at

RE: windows registry

2005-08-29 Thread Timothy Johnson
Check out Win32::TieRegistry. It makes quick work of most registry operations. # #Example use strict; use warnings; use Win32::TieRegistry (Delimiter => '/'); my $path = "Software/Microsoft/Windows/CurrentVersion/Run"; my @computers = qw(computerA computerB computerC);

RE: windows registry

2005-08-29 Thread Ryan Frantz
> -Original Message- > From: Tim Wolak [mailto:[EMAIL PROTECTED] > Sent: Monday, August 29, 2005 2:08 PM > To: beginners@perl.org > Subject: windows registry > > All, > > This is my first attempt at using perl to work with a windows system > and need some help. I need to check for some

Re: Windows Registry access

2002-01-27 Thread Tanton Gibbs
You can use Win32::TieRegistry. I've never actually done it, so I can't give you any tips, but you can perldoc it or look in the help pages that come with ActiveState if you are using that. - Original Message - From: "Max" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, January