in reply to Value Sought from Subroutine Argument?

No need to play with OLE when you can use Win32::Registry
use strict; use warnings; use Win32::Registry; # The following example reads and displays the value in the DWORD regi +stry value # HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl\Aut +oReboot. my $CrashControl; $::HKEY_LOCAL_MACHINE->Open( q~SYSTEM\CurrentControlSet\Control\CrashControl~, $CrashControl ) or die "Can't open CrashControl: $^E"; my ($type, $value); $CrashControl->QueryValueEx("AutoReboot", $type, $value) or die "No Au +toReboot: $^E"; print "Here's AutoReboot: $value\n";

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.