On windows, windows security screen(including log off, sutdown, taskmgr and so on) is appeared when we push ctrl+alt+del.

But I want to make show up my application(MFC) when we hit ctrl+alt+del.

So i need the return value of ctrl+alt+del.

How to get the return value from ctrl+alt+del... or What is return value from it?

link|improve this question
1  
The return value is 42. You get it from the function deep_thought(). – drhirsch Dec 28 '10 at 10:09
what does your app do? – David Heffernan Dec 28 '10 at 10:12
What do you mean by "return value"? You appear to want to show your application when those keys are pressed, but that's not the same thing as a "return value". Are you trying to determine what action the user took after pressing Ctrl+Alt+Del (e.g., locking the workstation)? – Cody Gray Dec 28 '10 at 10:30
@Cody: I think he means the key-code. Like in BASIC, the key code returned for the Esc key is 27, the key-code for space is 32, and the 'enter/return' key is 13. There are key-codes for keys which are pressed together too...which is what danny want's to know. – Nav Dec 28 '10 at 12:55
feedback

4 Answers

Could you elaborate on what you want to achieve? You probably will not (and most certainly should not) be able to re-hook the Secure Attention Sequence to perform application-specific actions. What you can do, however, is customize or replace the login component (GINA) that is responsible for handling the SAS -- this might be useful, for example, in kiosk systems where you want to restrict users from logging out.

MSDN Magazine had an article on that a while back, which you might find interesting: http://msdn.microsoft.com/en-us/magazine/cc163803.aspx

link|improve this answer
2  
I think GINA has been replaced by credential providers or something similar in recent versions of Windows. – David Heffernan Dec 28 '10 at 10:21
1  
@David Ah, shame. Always liked the acronym. Yep, GINA's gone since Vista. :/ – ig2r Dec 28 '10 at 10:25
2  
+1 for reading the asker's mind and providing an alternate solution. – Cody Gray Dec 28 '10 at 10:31
feedback

On Windows Ctrl+Alt+Delcombination is handled by Winlogon process. You cannot interfere with it due to security reasons.

link|improve this answer
feedback

You should write your own msgina.dll; it is not an easy task, but doing it you'll be able to control much more than just Ctrl+Alt+Del.

link|improve this answer
gina was replaced on vista so this works for xp only – David Heffernan Dec 28 '10 at 10:28
feedback

Ctrl+Alt+Del is a system hot key registered by the process winlogon in early versions of Windows (that is, 2000/XP pre SP1). You cannot override the registration or hook the WM_HOTKEY message (at least not in a safe way). It is understandable that the OS prefers operating system (specifically the Winlogon process) rather than a third party program to get the user's password, but want to be flexible in case the user want to authenticate via fingerprint, smart card, etc .

On Windows 2000/XP the official way to customize the login experience is to write your own Gina (detailed in the article linked in ig2r's reply) but Gina can conflict with each other (e.g. A Think Pad laptop with fingerprint login has problem with McAfee Safeboot, pcAnywhere, etc). Gina is gone in Vista.

On Windows Vista or later the way you can customize the logon experience is credential provider. It's extensibility is limited, but you still get an HWND via ICredentialProviderCredentialEvents::OnCreatingWindow in case you want to display a dialog in response of credential provider events. The documented way to use the HWND as the owner of your dialog (be win32 or MFC or whatever).

Of cause there is always the keyboard driver filter approach, provided you know driver development and user mode-kernel mode communication for each Windows version. You can even block the whole keyboard if you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.