Re: looking for a way to provide non-interactive a (General questions)
Hi Cedral,
If you wish to authenticate by user domain, you can use Domain Property inside UserAuthenticate Event.
I.e. you could do something like this:
If User.Login = user_login And User.Domain = user_domain Then
Action = Allow
Else
Action = Deny
End If
This way you wouldn't need to check/know user password in order to authenticate.
Hope this helps.
Regards,
Damba