gina

Custom Windows GINA authentication

孤街浪徒 提交于 2019-12-21 05:01:24
问题 In Windows, the GINA module can be extended to support different ways of authentication. For example, you can already see a support for Fingerprints, Smart Cards, or even Face Recognition (like what Lenovo did with their laptops). What I am trying to achieve is not something as complex as those methods. All what I want is to be able to provide my custom authentication service (i.e My own authentication method at login). Also, I want to know if there is a way to extend the default

A GINA replacement in a .NET language?

Deadly 提交于 2019-12-18 04:47:13
问题 I have searched quite a lot of places and I only found one GINA replacement called pGINA but it is in C++ which I don't know at all. Does anybody know one in either C# or VB.NET? (I'm writing software for use at work to control what employees are doing) 回答1: Hosting .NET in Winlogon (where GINA dlls are loaded) is probably not such a hot idea- could cause all sorts of conflicts if something else decides to do the same thing, and if you trash winlogon, you're not getting anywhere with that PC.

GINA logon dialog not in focus/active

£可爱£侵袭症+ 提交于 2019-12-11 03:54:27
问题 I have created a DLL to replace GINA. When I call WlxDialogBoxParam to display my own logon dialog, the dialog does not get active. What am I doing wrong? I have tried o call SetActiveWindow on the WM_INITDIALOG event, but that did not seem to help. I call the WlxDialogBoxParam with the following parameters: WlxDialogBoxParam(hWlx, GetMyInstance(), MAKEINTRESOURCE(IDD_LOGON), 0, DialogProc, (LPARAM)this); where DialogProc is defined as follows: Code: INT_PTR DialogProc(UINT msg, WPARAM wp,

Custom Windows GINA authentication

℡╲_俬逩灬. 提交于 2019-12-03 15:54:19
In Windows, the GINA module can be extended to support different ways of authentication. For example, you can already see a support for Fingerprints, Smart Cards, or even Face Recognition (like what Lenovo did with their laptops). What I am trying to achieve is not something as complex as those methods. All what I want is to be able to provide my custom authentication service (i.e My own authentication method at login). Also, I want to know if there is a way to extend the default authentication method (password) so that there is a preprocessing stage of the password before sending it to the

A GINA replacement in a .NET language?

匆匆过客 提交于 2019-11-29 06:50:09
I have searched quite a lot of places and I only found one GINA replacement called pGINA but it is in C++ which I don't know at all. Does anybody know one in either C# or VB.NET? (I'm writing software for use at work to control what employees are doing) Hosting .NET in Winlogon (where GINA dlls are loaded) is probably not such a hot idea- could cause all sorts of conflicts if something else decides to do the same thing, and if you trash winlogon, you're not getting anywhere with that PC. Also, GINA has been replaced as of Vista with ICredentialProvider (see here )- so your investment would be