I have an application that uses the Windows Input Simulator. I use this to simulate a Ctrl-S keystroke to the parent application. When the windows desktop is locked an exception is raised

Exception: The key down simulation for CONTROL was not successful. at WindowsInput.InputSimulator.SimulateKeyDown(VirtualKeyCode keyCode) at WindowsInput.InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode modifierKeyCode, VirtualKeyCode keyCode)

Here is my code :

InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.CONTROL, VirtualKeyCode.VK_S);
InputSimulator.SimulateKeyDown(VirtualKeyCode.RETURN);

Any ideas?

link|improve this question

feedback

2 Answers

By design. The secure desktop is activated when the machine is locked. Which has counter-measures against programs poking keystrokes into the username/password text boxes.

You can use the SystemEvents.SessionSwitch event to detect the machine getting locked and unlocked. There is no documented way to detect that the machine is currently locked, you can only see the transitions.

link|improve this answer
There is some way to get the input to work however; TeamViewer certainly manages to send input to the logon screen. Presumably this requires sending keys from a service with appropriate rights. (commenting since I offer no details...) – romkyns Jan 3 at 14:19
Thanks. I figured but was really hoping that there was a way to accomplish this. – Web Jan 4 at 13:21
feedback

i could imagine that it's the windows api that doesn't react on this kind of stuff when the pc is locked

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.