in reply to Registry String Values
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".use Win32::TieRegistry(Delimiter=>'/'); my $ms= $Registry->{'LMachine/Software/Microsoft/'}; $ms->{'Junk1/'} = { 'Junk2/'=> {'/Junk3' => ['JunkVal','REG_SZ']} + };
"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 |