Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -r2975d80f56ec798af91d2ff0acafaa294e71c357 -rc13e20ff5fd317232bcc930a722ce52e5b5a68f7 --- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 2975d80f56ec798af91d2ff0acafaa294e71c357) +++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision c13e20ff5fd317232bcc930a722ce52e5b5a68f7) @@ -399,10 +399,17 @@ private static string UserDisplay() { - return IsAuthenticated() - ? string.Format("{0} ({1})", UserPrincipal.Current.DisplayName, - UserPrincipal.Current.SamAccountName) - : Environment.UserName; + try + { + return IsAuthenticated() + ? string.Format("{0} ({1})", UserPrincipal.Current.DisplayName, + UserPrincipal.Current.SamAccountName) + : Environment.UserName; + } + catch (SystemException) + { + return string.Empty; + } } private static bool IsAuthenticated()