You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
318 B
Perl

#!/usr/bin/perl -w
use Win32::Registry;
$key_name = "SOFTWARE\\YourKey";
$status = $HKEY_LOCAL_MACHINE->Create( $key_name, $keyobj );
if ($status) {
$keyobj->SetValueEx( 'Value', # Name
0, # Reserved.
REG_SZ, # Type
'Comments' );
$keyobj->Close();
}