• Resolved rdirvin

    (@rdirvin)


    Hello,

    I am looking to upgrade to this plugin from the old version (ADI 1.1.8). Everything seems straight forward, however I’m unsure about the Service Account Password that must be re-inputted. I asked the person who setup our WP and he was not sure about it either. Is there some place I can find it currently, to write it down before I upgrade?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author schakko

    (@schakko)

    The password is stored encrypted. You can echo the decrpyted password if you are using the Sync Back option.

    In ad-integration.php, line 1342 you can change

    if ($this->_syncback_use_global_user === true) {
    $ad_username = $this->_syncback_global_user;
    $ad_password = $this->_decrypt($this->_syncback_global_pwd);
    } else {

    into

    if ($this->_syncback_use_global_user === true) {
    $ad_username = $this->_syncback_global_user;
    $ad_password = $this->_decrypt($this->_syncback_global_pwd);
    die(“AD password: ” . $ad_password);
    } else {

    and start the syncback process.
    Otherwise you have to manually change the password of the account by using PowerShell or MMC.

    Thread Starter rdirvin

    (@rdirvin)

    Awesome! Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Service Account Password’ is closed to new replies.