PROJET AUTOBLOG


Shaarli - Librement Shaarli

Site original : Shaarli - Librement Shaarli

⇐ retour index

Exchange 2013 - OWA Password Expired - Requiring DOMAIN\Username

vendredi 5 janvier 2018 à 14:47

Question
Sign in to vote
5
Sign in to vote

I found a way to default the domain:

Browse to:

C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\owa\auth\<latestversion>\scripts\premium\

Make a backup copy of fexppw.js, then look for this section:
        // UPN authentication isn't supported, don't fill in the username
        // if it's an email address
        //
        if (rg && rg[3].indexOf('@') == -1)
        {
            // Fill in username, set focus to password
            //
            gbid("username").value = rg[3];
            gbid("oldPwd").focus();
        }

Change the username value setting code to this:

gbid("username").value = "YOURDOMAIN\\" + rg[3];
Permalink