Universal Dashboard 2.7 and UDStudio

Hey @jorf, are you using -AutoReload on Start-UDDashboard?

I’ve been trying to reproduce this and it doesn’t seem like any ol’ login page is causing the issue in my environment.

For example, I this guy works fine.

$AuthenticationMethod = New-UDAuthenticationMethod -Endpoint {
    param([PSCredential]$Credential)

    New-UDAuthenticationResult -Success -UserName "Adam"

    $Test
}

$AuthenticationPolicy = New-UDAuthorizationPolicy -Name 'Policy' -Endpoint {
    $true 
}

$LoginPage = New-UDLoginPage -AuthenticationMethod $AuthenticationMethod -AuthorizationPolicy $AuthenticationPolicy