Click here to Skip to main content
15,891,567 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hello everybody,

I would like to make application for windows based system for user authentication. Does anybody have some experiences with this? I am planning authenticate users via face recognition, but I am curious how to start that app before user loggs on to system.
Posted
Updated 18-Oct-12 1:24am
v2
Comments
Sergey Alexandrovich Kryukov 17-Oct-12 18:28pm    
This is not a topic for Quick Questions & Answers forum. It may take your lifetime...
--SA

1 solution

The Windows application you can start up before any user is logged in is a Windows Service which is set up for auto start (you can see this option if you start the "Services" Control Panel applet). But it would not make any sense, because this could not be the UI application.

The only thing you can do to intercept the login is creation of a custom credential provider. Please see:
http://msdn.microsoft.com/en-us/magazine/cc163489.aspx[^],
http://msdn.microsoft.com/en-us/magazine/cc163803.aspx[^],
http://msdn.microsoft.com/en-us/magazine/cc163786.aspx[^],
http://en.wikipedia.org/wiki/Graphical_Identification_and_Authentication[^],
http://msdn.microsoft.com/en-us/library/aa380543.aspx[^].

But first of all, please see my comment to the question and think about it.

—SA
 
Share this answer
 
Comments
vacho2 18-Oct-12 5:30am    
I am asking because there exists face recognition application for authentication. I wanna do the same.

Thanks for your answer
Sergey Alexandrovich Kryukov 18-Oct-12 13:53pm    
Certainly. My notebook came with one. But this is not a software development question. Find one and install it if you want.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900