Hi everyone !
I am getting some troubles with the -Passthru param.
Everytime i try to reach my dashboard, the credential prompt pop up. The single sign on is not working and i can’t find why…
My forwardAuthToken is set to true.
All is working fine except the single sign on.
I have also tried with the documentation code :
Start-UDDashboard -Content {
$Auth = New-UDAuthenticationMethod -Windows
$LoginPage = New-UDLoginPage -AuthenticationMethod @($Auth) -PassThru
New-UDDashboard -Title "Line" -Content {
New-UDRow -Columns {
New-UDColumn -Size 12 -Endpoint {
New-UDHeading -Text "Logged in as $user"
}
}
} -LoginPage $LoginPage
} -Wait -AllowHttpForLogin
So, did i miss a change or something ?
Thanks.
Lucas R.