You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case"AADSTS50076": // Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access
108
108
options.Log.Info(username+" MFA needed")
109
109
case"AADSTS700016":
110
-
options.Log.Fail(username+" The application wasn't found in the directory/tenant")
110
+
options.Log.Error(username+" The application wasn't found in the directory/tenant")
111
111
case"AADSTS50034": // UserAccountNotFound - To sign into this application, the account must be added to the directory.
112
112
options.Log.Fail(username+" does not exist")
113
113
case"AADSTS90002":
114
-
options.Log.Fail("The Tenant '"+domain+"' does not exist")
114
+
options.Log.Error("The Tenant '"+domain+"' does not exist")
options.Log.Success(username+" exists but there is no password")
199
199
valid=true
200
200
case"AADSTS50014":
201
-
options.Log.Fail(username+" exists but max passthru auth time exceeded")
201
+
options.Log.Error(username+" exists but max passthru auth time exceeded")
202
202
case"AADSTS50076": // Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access
203
203
options.Log.Info(username+" MFA needed")
204
204
valid=true
205
205
case"AADSTS50057":
206
206
options.Log.Info(username+" and "+password+" matched but the account is disabled")
207
207
valid=true
208
208
case"AADSTS700016":
209
-
options.Log.Fail(username+" The application wasn't found in the directory/tenant")
209
+
options.Log.Error(username+" The application wasn't found in the directory/tenant")
210
210
case"AADSTS50034": // UserAccountNotFound - To sign into this application, the account must be added to the directory.
211
211
options.Log.Fail(username+" does not exist")
212
212
case"AADSTS90002":
213
-
options.Log.Fail("The Tenant '"+username+"' does not exist")
213
+
options.Log.Error("The Tenant '"+username+"' does not exist")
0 commit comments