An error ocurred The resource you are trying to access is not available :  During ADFS install in my server 2019 test environment, i tried to access ‘idpinitiatedsignin’ page for verification. But i received this common error

An error occurred The resource you are trying to access is not available. Contact your administrator for more information.

An error ocurred The resource you are trying to access is not available
EnableIdpInitiatedSignonPage is in disabled state.

Solution: idpinitiatedsignin is disabled by default from server 2016, so we received the same error in server 2019 also. I enabled the initiated signon using PowerShell and able to access the signin page successfully.

Set-AdfsProperties -EnableIdpInitiatedSignonPage $True

An error ocurred The resource you are trying to access is not available
Set-AdfsProperties -EnableIdpInitiatedSignonPage $True

 

An error occurred The resource you are trying to access is not available. Contact your administrator for more information.

To get the current status -> Get-AdfsProperties |Select-Object EnableIdpinitiatedsignonpage

To Enable initiated signon -> Set-AdfsProperties -EnableIdpInitiatedSignonPage $True

To disable initiated signon -> Set-AdfsProperties -EnableIdpInitiatedSignonPage $false

By AMARNATH K

AM@RNATH is a Technology specialist primarily focus on Microsoft Technologies & Cloud Security. His certification includes M365 Certified: Enterprise Admin Expert. He loves to explore things from the latest technologies to cooking new recipes. Basically from Chennai, the southern part of India. Lucky son, friendly husband, and a proud father who loves to spend time with his family & friends while the laptop is not in his table.

Leave a Reply

Your email address will not be published.