http://www.perlmonks.org?node_id=489803

vios has asked for the wisdom of the Perl Monks concerning the following question:

How to create a new DWORD value into Windows Registry?
  • Comment on How to create new DWORD value in Windows Registry?

Replies are listed 'Best First'.
Re: How to create new DWORD value in Windows Registry?
by gellyfish (Monsignor) on Sep 07, 2005 at 09:09 UTC
      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";
        Yes, got your idea. thank you.
        my $rootkey = "LMachine/Software/Microsoft/Windows NT/CurrentVersion/W +inlogon"; $Registry->{"$rootkey//testkey2"} = [pack("L",0), "REG_DWORD"];
      You would have thought that they would have a section on Adding Keys? Especially with a code examples that shows adding keys in all of the registry data types.