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]

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 woul

RE: Win32 Registry

2003-12-21 Thread Tim Johnson
er 20, 2003 1:24 PM To: Tim Johnson Cc: 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/M

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

RE: Win32 Registry

2003-12-20 Thread Jeff Westman
Tim Johnson <[EMAIL PROTECTED]> 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. Suppose I had s

RE: Win32 Registry

2003-12-20 Thread Tim Johnson
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. -Original Message- From: Jeff Westman [mailto

Re: Win32 registry

2003-08-18 Thread Jenda Krynicky
From: Saadat Saeed <[EMAIL PROTECTED]> > 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

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

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 a