1、How to use JMP SOFTWARE JSL to read the contents of the registry branch :HKEY_USERS\SOFTWARE\SAS Institute Inc.\JMP\Recent\Files
wsh = Create Object("WScript.Shell");
reg_path = "HKEY_USERS\SOFTWARE\SAS Institute Inc.\JMP\Recent\Files";
Try(
reg_values = wsh:RegRead(reg_path);
If( Is String( reg_values ),
Show( reg_values );
,
For( i = 1, i <= N Items( reg_values ), i++,
Print( Char( i ) || ": " || reg_values[i] );
);
);
);//??
2、And how JSL with JMP software implements regedit.exe to import the specified registry file into the registry.
Thanks Experts!