Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modify Windows Login screen

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 http://www.allaboutmoss.com/wp-content/uploads/2010/04/windowsxp_login.jpg

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

like image 691
Shoban Avatar asked Apr 22 '10 07:04

Shoban


1 Answers

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.

like image 160
Dean Harding Avatar answered Oct 19 '22 05:10

Dean Harding