Take a look at Win32::TieRegistry. The following code is untested, but should append "appended data" to the 'bar' string value located under the HKEY_LOCAL_MACHINE\Software\foo key.
use Win32::TieRegistry; my $reg = Win32::TieRegistry->new(); $reg->Delimeter('/'); my $key = $reg->{"LMachine/Software/foo/"}; my $val = $key->{"/bar"}; $key->{"/bar"} = $val . "appended data";
In reply to Re: append to registry value
by saskaqueer
in thread append to registry value
by perlnewbie2000
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |