Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
990 views

A GINA replacement in a .NET language?

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 ...
2
votes
3answers
186 views

Run Application at window Login Screen

I have made C# winform keyboard that i need to run at windows login screen so that user can enter password to specific user account. the computer which is using this application doses not have ...
2
votes
1answer
433 views

Log off from Remote Desktop Session does not closing Session, showing the login screen again on Windows XP 32 Bit - SP2

As per requirement we have written one custom GINA. I have observed one interesting behavior in Windows XP 32 Bit(SP2). Customized GINA internally calls windows default Windows GINA (msgina.dll) and ...
2
votes
1answer
414 views

What is a GINA dll

What is a GINA dll, and is it possible to trap special key combinations using this dll? How can I use this in a kiosk application?
2
votes
2answers
839 views

Custom Windows GINA authentication

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 ...
1
vote
1answer
243 views

Ldap Authentication for Windows Standalone Servers Using Novell eDirectory

I have an LDAP server Novell eDirectory in my Environment through which has the user data. In my Environment i have set of Windows and Linux servers. I need to use this LDAP As the Authentication ...
1
vote
1answer
78 views

Send hot key to program while windows is locked

Is it possible to send hot key to program while windows is locked? Maybe i should modify gina.dll?
1
vote
1answer
265 views

Modifying Windows ctrl-alt-del behavior through Gina

Hello I am trying to change the behavior of the windows xp ctrl alt del key in certain scenarios throught Gina. Specifically I want to unhook the custom dialog that appears on ctrl alt del that was ...
1
vote
0answers
127 views

GINA logon dialog not in focus/active

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 ...
0
votes
0answers
22 views

WlxSASNotify and Windows Credential Provider

I am trying to figure out if there is a way for me to trap Ctrl-Alt-Del in a Windows 7 Credential Provider. I know we could do this in the GINA days using WlxSASNotify and I remember reading in the ...
0
votes
1answer
59 views

Replacing Window 7's logon screen completely?

In Windows XP it was possible to substitute the logon interface for your own GINA implementation that could add additional features to the logon screen as well as implement some organisation-specific ...
0
votes
1answer
151 views

C++ script to “unlock” windows after being locked using “LockWorkStation()”

I have a C++ script that locks the windows when a specific event occurs. Locking windows is done using “LockWorkStation()” command. What I want to do is “unlock” windows when some other event occurs. ...
0
votes
0answers
83 views

Where did the winlogon SAS window gone?

I have a customized GINA DLL loaded from window registry. This custom GINA provide a button which will open an executable file exe. I manage to make C# exe program to be run when the button is ...
0
votes
1answer
86 views

Where does the “Shut Down Windows” dialog come from?

I need to trap the "Shut Down Windows" dialog that appears when you press the power button in Windows XP. I'm using a custom GINA to trap security and logon dialogs, but the "Shut Down Windows" ...
0
votes
2answers
337 views

How to remotely degug msgina.dll?

I have a fully customized msgina.dll in module i need to remotely debug it? Ho will i achieve this Abdul Khaliq
0
votes
1answer
585 views

uninstall using Wix on GINA causes login failure

Problem: After uninstalling a replacement GINA I get logged off immediately after logging on if I use the WIX 3.0 installer. I have a replacement login process (GINA) for windows XP. It consists of ...
0
votes
1answer
1k views

How do I monitor failed logon attempts in Windows?

Is there any reliable way to monitor failed logon attempts on-the-fly in Windows XP? (well, Vista too for that matter). I need to monitor failed logon attempts programmatically which is currently ...