in reply to problem with spaces in path to registry key
#! /usr/bin/perl -w use strict; use warnings; my $Registry; use Win32::TieRegistry 0.20 ( TiedRef => \$Registry, Delimiter => "/", ArrayValues=>1, qw( REG_SZ REG_EXPAND_SZ REG_DWORD REG_BINARY REG_MULTI_SZ KEY_REA +D KEY_WRITE KEY_ALL_ACCESS ), ); my $winkey= $Registry->{"CUser/Software/Microsoft/Internet Account Man +ager/"}; print keys(%$winkey);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: problem with spaces in path to registry key (or die)
by tye (Sage) on Jun 25, 2004 at 15:24 UTC |