in reply to Re^2: Getting Windows control panel to invoke an uninstall script
in thread Getting Windows control panel to invoke an uninstall script

I'd write that more like:

my $Reg; use Win32::TieRegistry( TiedRef => $Reg, Delimiter => '/' ); $Reg->{ "LMachine/Software/Microsoft/Windows/" . "CurrentVersion/Uninstall/$name/"} = { DisplayName => $name, UninstallString => $uninstallPath, } or die "Can't load registry: $^E";

But there are a lot of ways to use that module.

- tye        

  • Comment on Re^3: Getting Windows control panel to invoke an uninstall script (anon hash assign)
  • Download Code