in reply to how do you propagate Tie::Registry modifications to the system environment
FYI, Win32::TieRegistry is the module that you want to use. Tie::Registry has been deprecated.#!/usr/bin/perl use strict; use warnings; use Win32::Env; InsertPathEnv(ENV_SYSTEM, PATH => $bindir); InsertPathEnv(ENV_SYSTEM, PERL5LIB => $libdir); BroadcastEnv();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how do you propagate Tie::Registry modifications to the system environment
by warrendodge (Initiate) on Aug 13, 2010 at 17:47 UTC | |
by tye (Sage) on Aug 14, 2010 at 06:02 UTC | |
by warrendodge (Initiate) on Aug 16, 2010 at 21:34 UTC | |
by tye (Sage) on Aug 16, 2010 at 21:38 UTC | |
by tye (Sage) on Oct 08, 2010 at 21:39 UTC |