all is said in the title, how can I simulate the combination Ctrl+Alt+DEL?
I tried this:
SendKeys.Send("^(%({DEL}))")
SendKeys.Send("^(%{DEL})")
SendKeys.Send("^%{DEL}")
But none worked. I am working on VB.NET and Windows XP SP3
|
show 1 more comment
feedback
|
|
You can't. This is done at the device driver level, you can't fake input for the keyboard driver. Also the reason you cannot disable it. Allowing it to be faked would of course be a very serious security flaw. | |||||||||||||||||
feedback
|
|
The function you need is called Others have explained why it's actually not a security issue to allow apps to trigger CTRL+ALT+DEL, but you certainly can't do it with | |||||
feedback
|
|
Your best bet might be to download the TightVNC source code, and see how they do it. | |||||||||
feedback
|
|
See this thread for some information that seems useful: Basically:
Note, I only distilled the web page I link to, I have no idea if it works, or if there are more gotchas. | ||||
|
feedback
|
|
I finally found this C++ code on CodeProject, which works well when launched as System user. Therefore, I converted the code into a dll, and called the function from my code. Here is the c++ code (you can use the ErrorExit example function that uses
You also need to add a .def file to the project to export the function correctly (the project is named AltCtrlDelCpp) and tell the linker that the definition file of the module is this file
Then, in the .NET solution, you add the dll to the project, configures it so that it is always copied in the output directory, and you just use DllImport to import the function: C# Code
VB.NET Code
In VB.NET, you also need to add the attribute to the Sub Main :
Then you just have to call the | |||||||||
feedback
|
WindowsSecuritymethod on the shell dispatch object. – Raymond Chen Mar 6 at 14:18