in reply to Re^2: Win32::TieRegistry - RegSaveKey saves on remote hosts disk but not mine.
in thread Win32::TieRegistry - RegSaveKey saves on remote hosts disk but not mine.

127.0.0.1 may well be being interpreted as the remote machine, not yours - what happens if you explicitly use either your machine's name, or a non-127.* address?

Update:

Further poking around reveals that RegSaveKey and RegLoadKey are defined in Win32API::Registry, which mentions the following:

WARNING:  Loading of hive files via a network share may silently
corrupt the hive and so should not be attempted (this is a problem
in at least some versions of the underlying API which this module
does not try to fix or avoid).  To access a hive file located on a
remote computer, connect to the remote computer's Registry and load
the hive via that.

Which seems to imply that it is possible to do this remotely.

Replies are listed 'Best First'.
Re^4: Win32::TieRegistry - RegSaveKey saves on remote hosts disk but not mine.
by Sioln (Sexton) on Jan 20, 2006 at 14:39 UTC
    I'm idiot :)
    Thanks.