Login dialog for Windows client application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:28:50Z http://stackoverflow.com/feeds/question/1018575 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application 5 Login dialog for Windows client application Paul Stovell 2009-06-19T15:23:28Z 2009-06-19T15:42:16Z <p>Is there a Win32 function I can call to show a Windows login dialog?</p> <p>E.g., Internet Explorer and Visual Studio's Team Explorer both show a credentials dialog when accessing a website - how can I show that dialog?</p> <p>I have a .NET Windows client application that uses the logged in Windows user identity when communicating to web services. The services use that user ID to determine who is calling the service and to decide what they have permissions to see. </p> <p>I would like to add a command that allows the current user to do effectively a "run as", where they can enter the username/password of another user and we have the application act as them. </p> <p>I could build a custom dialog and use the LoginUser() function, but I would rather use something "official". </p> http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application/1018636#1018636 1 Answer by Bob Nadler for Login dialog for Windows client application Bob Nadler 2009-06-19T15:36:29Z 2009-06-19T15:36:29Z <p>I think you're stuck creating your own dialog. It's not that hard to make it look official though.</p> http://stackoverflow.com/questions/1018575/login-dialog-for-windows-client-application/1018662#1018662 5 Answer by SLaks for Login dialog for Windows client application SLaks 2009-06-19T15:42:13Z 2009-06-19T15:42:13Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/aa375177.aspx" rel="nofollow">CredUIPromptForCredentials</a> API function</p> <p>See also <a href="http://weblogs.asp.net/hernandl/archive/2005/11/21/usercredentialsdialog.aspx" rel="nofollow">here</a></p>