Hello all.
I'm trying to read in a value of a registry key using the Win32::TieRegistry module. But I can't seem to get it to work. I even tried the exact examples given in the module information on CPan. Can anybody help? Is there something that I'm missing here?
Below is my script so far. It should be very simple (it if worked).
use Win32::TieRegistry;
$jvm_option_value = Registry->{"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Tips\\\\18"};
print ("The value in the registry is: $jvm_option_value \n");
Thanks in advance.
I'm trying to read in a value of a registry key using the Win32::TieRegistry module. But I can't seem to get it to work. I even tried the exact examples given in the module information on CPan. Can anybody help? Is there something that I'm missing here?
Below is my script so far. It should be very simple (it if worked).
use Win32::TieRegistry;
$jvm_option_value = Registry->{"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Tips\\\\18"};
print ("The value in the registry is: $jvm_option_value \n");
Thanks in advance.