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:[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. 
        
        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 examples on how to use this would be appreciated (or other
        recommendations).
        
        TIA
        
        
        -Jeff
        
        __________________________________
        Do you Yahoo!?
        New Yahoo! Photos - easier uploading and sharing.
        http://photos.yahoo.com/
        
        --
        To unsubscribe, e-mail: [EMAIL PROTECTED]
        For additional commands, e-mail: [EMAIL PROTECTED]
        <http://learn.perl.org/> <http://learn.perl.org/first-response>
        
        
        

Reply via email to