in reply to Re: modify searchlist in registry
in thread modify searchlist in registry

thanks, that works just fine, i can now retrieve the search list with;
my $key = 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ +Parameters\SearchList'; my $search_list = $Registry->{$key};
but how about changing the value?

Replies are listed 'Best First'.
Re: Re: Re: modify searchlist in registry
by Anonymous Monk on Aug 07, 2002 at 17:53 UTC
    just assign value to $Regitry->{key};, and registry will be updated via internal "tie" magic.