Link to home
Start Free TrialLog in
Avatar of CiscoAzn
CiscoAznFlag for United States of America

asked on

ADFS 2.0 modify sign in page

The default ADFS sign in page is https://domain/adfs/ls/idpinitiatedsignon.aspx but I want to customize this to a shorter URL. Is there a way to do this? Also I want to add a logo to the sign in page but I'm not familiar with .asp and don't use visual studio.
Avatar of JohnB442
JohnB442
Flag of United States of America image

Look here for adding a logo (modifying the web.config file):
http://msdn.microsoft.com/en-us/library/ee895366.aspx

If you want to use a short URL, you could use redirection. First, create a DNS A-record entry with your short-name, such as "idpsso" ("idpsso.yourdomain.com"). Then, within IIS, create a new web site based on the IP you assigned to "idpsso", and configure the redirection settings to point to "https://domain/adfs/ls/idpinitiatedsignon.aspx".

Look here for more on how to configure redirection:
http://technet.microsoft.com/en-us/library/cc732930(v=ws.10).aspx
Avatar of CiscoAzn

ASKER

I see the link and to look at the web.config but where how do you change it to point to where the logo.png is located? It's states go to <add key="logo" value="logo.png" /> and I see it but what else do I do? I'm not a programmer.
I figured it out by just removing the arrows. Another question is we have several SSO on the same sign on page so how do I change the priorities of the selection?
ASKER CERTIFIED SOLUTION
Avatar of JohnB442
JohnB442
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You have helped me tremendously. Thank you!