Search This Blog

Monday, July 20, 2015

Customize ADFS Sign In Pages–To Make It More Interesting.

 

Hmm….Default Sign In-Page is a bit dull. Don’t you think so?

Boring

Too bad, we cannot make any changes like Azure Active Directory Page Branding from Azure Management Portal. During R & D, we found that the only way to make our Sign In Page more interesting on ADFS 3.0 is modify from Powershell. Let start each component that we can change

[ Configuration]

1. Change Company Name

Set-AdfsGlobalWebContent –CompanyName "MS4U Corporation"

image


2. Change Company Logo


Recommend size is 260 X 35 @96 dpi. Size less than 10 KB. Either you want text company name or use company logo.





Set-AdfsWebTheme -TargetName default -Logo @{path="c:\Logo\ms4ulogo.png"}

image


3. Change Illustration on the left


Recommend 1420 X 1080 pixel @96 dpi. Size less than 200KB





Set-AdfsWebTheme -TargetName default -Illustration @{path="c:\Logo\Green.jpg"}



image


4. Add Sign in Page Description





Set-AdfsGlobalWebContent -SignInPageDescriptionText "<p>Welcome to MS4U Corporation Secure Page</p>"

image


5. Add Help Desk Link





Set-AdfsGlobalWebContent -HelpDeskLink http://www.ms4u.info/ -HelpDeskLinkText Help

We are adding Help Link that point to our blog URL:- www.ms4u.info


image


6. Add Home Link





Set-AdfsGlobalWebContent -HomeLink http://www.ms4ucloud.info -HomeLinkText Home

We are pointing home link to our child page www.ms4ucloud.info


image


7. Add Privacy Link





Set-AdfsGlobalWebContent -PrivacyLink http://www.ms4u.info/privacy/ -PrivacyLinkText Privacy

image


[ Result]


image


There are a lot of customization that you can perform. To learn more, please visit this link:- https://technet.microsoft.com/en-us/library/dn280950.aspx