1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-24 15:33:20 +03:00

r9568: updated the winreg js library for CreateKey, and add a --createkey

option to the winreg tool
This commit is contained in:
Andrew Tridgell
2005-08-24 08:32:51 +00:00
committed by Gerald (Jerry) Carter
parent 439f34a962
commit 881452c7b7
2 changed files with 56 additions and 9 deletions

View File

@@ -12,7 +12,8 @@ libinclude("winreg.js");
var options = GetOptions(ARGV,
"POPT_AUTOHELP",
"POPT_COMMON_SAMBA",
"POPT_COMMON_CREDENTIALS");
"POPT_COMMON_CREDENTIALS",
"createkey=s");
if (options == undefined) {
println("Failed to parse options");
return -1;
@@ -61,6 +62,10 @@ function list_values(path) {
function list_path(path) {
var list = reg.enum_path(path);
if (list == undefined) {
println("Unable to list " + path);
return;
}
var i;
list_values(path);
for (i=0;i<list.length;i++) {
@@ -83,6 +88,13 @@ if (options.ARGV.length > 1) {
root = '';
}
printf("Listing registry tree '%s'\n", root);
list_path(root);
if (options.createkey) {
var ok = reg.create_key("HKLM\\SOFTWARE", options.createkey);
if (!ok) {
}
} else {
printf("Listing registry tree '%s'\n", root);
list_path(root);
}
return 0;