in reply to Re: How to create new DWORD value in Windows Registry?
in thread How to create new DWORD value in Windows Registry?
use strict; use warnings; use use Win32::TieRegistry ( Delimiter => "/", ArrayValues => 1 ); my $rootkey = "LMachine/Software/Microsoft/Windows NT/CurrentVersion/W +inlogon"; $Registry->{"$rootkey//testkey"} = "foobar";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to create new DWORD value in Windows Registry?
by Anonymous Monk on Sep 07, 2005 at 11:10 UTC |