in reply to Re: How to create new DWORD value in Windows Registry?
in thread How to create new DWORD value in Windows Registry?

The following code snippett should give you the right idea:
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
    Yes, got your idea. thank you.
    my $rootkey = "LMachine/Software/Microsoft/Windows NT/CurrentVersion/W +inlogon"; $Registry->{"$rootkey//testkey2"} = [pack("L",0), "REG_DWORD"];