tags:

views:

101

answers:

1

Is it possble to Modify the Window's Login screen and add our own buttons/links? For example is it possible to do something like this?

alt text

The above screen has a link and when clicked it should start a win forms application?

+10  A: 

For Windows XP, you can build a GINA DLL, and for Vista+ you need to use the new credential providers system. In both cases, you basically have to build the UI from scratch and so it's not really possible to just take the existing UI and add a few controls here and there.

Of course, you could build your own GINA DLL that displays UI that's the same as the standard Windows XP one, with your own additions, but it's not exactly a simple task.

Dean Harding
Is it possible to build a Gina dll or a credential provider in .NET?
ZippyV
You can't build the DLL itself in .NET (it has to export functions, which you can't do in C#) but I'm pretty sure you could write a C++ wrapper that calls C# code to do the actual work.
Dean Harding