Pressing Ctrl-Alt-Del and then Esc (to get back to Windows from the logout screen) gives the following in the log:
And the last line somehow remains in the cache as if the buttons are stuck.Keyboard.LCtrl
Keyboard.LCtrl+LAlt
Keyboard.LCtrl+LAlt+Delete
Keyboard.LCtrl+LAlt+Delete
So if I, say, press Space after that, I get:
I tried "Clear Pending Events" on Ctrl-Alt-Del - no result.Keyboard.LCtrl+LAlt+Space+Delete
What works is:
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1480">
<Folder Name="Autostart Macros" id="15" Expanded="True">
<Macro Name="Ctrl-Alt-Delete reset" Expanded="True">
<Event Name="Keyboard.LCtrl+LAlt+Delete" />
<Action>
Window.SendKeys(u'{Delete}{Alt}{Ctrl}', False)
</Action>
</Macro>
</Folder>
</EventGhost>Is there a better way to clear the remains of a Ctrl-Alt-Del from the cache?
Thanks!