Help for this page

Select Code to Download


  1. or download this
    $regstring = HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/NTDS
    +/Parameters/
    
    ...
    $system->Create("CurrentControlSet/Services/NTDS/Parameters/LDAPServer
    +Integrity/TEST", $Test) || die "Create: $!";
    
    It creates a key called "CurrentControlSet/Services/NTDS/Parameters/LD
    +APServerIntegrity/TEST" at the Services directory, it does not follow
    + the / as folder path.
    
  2. or download this
    use Win32::Registry;
    use Win32::TieRegistry(Delimiter=>"/"); 
    use Win32::File;
    ...
    }
    
    return 1;