ADFS 2016 idpinitiatedsignon page is missing - Solved

Many of you guys will probably know the ADFS page, which can be used to test the authentication. Most of the time this page is used after the installation of an ADFS farm or in error cases. With the introduction of ADFS on Windows Server 2016, many of us may have encountered the problem, which is shown in the following screenshot when browsing to the URL https://adfs.corp.com/adfs/ls/idpinitiatedsignon after the successful installation of a new ADFS farm:

/static/img/adfs2016_idp_01.png

Ooops something went wrong. But is my ADFS farm installation missing a piece? Well, kind of! If you encounter this, then run the following PS command:

Get-AdfsProperties | select EnableIdPInitiatedSignonPage

Most probably you will see this result:

/static/img/adfs2016_idp_02.png

So the problem is that this page is disabled by default. So let’s change this by running the following command:

Set-AdfsProperties -EnableIdPInitiatedSignonPage $true

/static/img/adfs2016_idp_03.png

Now you can browse to your InitiatedSignon page and you will be able to login and check if everything is working as expected! Happy ADFSing ;)

/static/img/adfs2016_idp_04.png

/static/img/adfs2016_idp_05.png