tcf03 has asked for the wisdom of the Perl Monks concerning the following question:
use warnings; use strict; use Win32::TieRegistry ( TiedHash => '%RegHash' ); my $Registry=\%RegHash; my @reg=%{ $Registry->{"HKEY_CLASSES_ROOT\\batfile\\"} }; for ( @reg ) { print "$_\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Windows Registry - printing keys
by ikegami (Patriarch) on Nov 28, 2005 at 15:37 UTC |