Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save hermesthecat/165d03c686321005ed95ff7abed98275 to your computer and use it in GitHub Desktop.

Select an option

Save hermesthecat/165d03c686321005ed95ff7abed98275 to your computer and use it in GitHub Desktop.
Modifier l'interface de connexion OWA d'Echange On Premise

Changer l'interface OWA d'Exchange

Retirer la sidebar

Ouvrir le fichier C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\owa\auth\logon.aspx

commenter les lignes suivante:

<div class="sidebar">
    <div class="owaLogoContainer">
        <img src="<%=InlineImage(ThemeFileId.OutlookLogoWhite)%>" class="owaLogo" aria-hidden="true" />
        <img src="<%=InlineImage(ThemeFileId.OutlookLogoWhiteSmall)%>" class="owaLogoSmall" aria-hidden="true" />
    </div>
</div>

⚠️ Changer l'indentation du fichier provoque des erreurs et empêche le service IIS de servir la page web.

Ajouter une image de fond

Ouvrir le fichier C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\owa\auth\15.2.721\themes\resources\logon.css

ajouter la ligne suivante dans la section body

background: url(url-https-de-votre-image);
background-size: cover;

Optionnellement, vous pouvez ajouter les lignes suivante dans la même section pour obtenir un effet de dégradé de couleur. cela permettra d'avoir un fond même si l'image n'est plus disponible.

background: #e96443;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #904e95, #e96443);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #904e95, #e96443); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment