in reply to Registry String Values

Setting values while creating sub-keys requires somewhat convoluted syntax, but is documented.
use Win32::TieRegistry(Delimiter=>'/'); my $ms= $Registry->{'LMachine/Software/Microsoft/'}; $ms->{'Junk1/'} = { 'Junk2/'=> {'/Junk3' => ['JunkVal','REG_SZ']} + };
This (tested) code will create the Junk1 key under Microsoft. Under that, under subkey Junk2, you will find the Name Junk3, which will contain the value "JunkVal".

     "There are only two truly infinite things. The universe and stupidity, and I'm not too sure about the universe"- Albert Einstein

Replies are listed 'Best First'.
Re^2: Registry String Values
by mallen (Acolyte) on Apr 08, 2005 at 12:35 UTC
    Thanks, that worked great. I have everything in my searchlist that I needed.