PyUserInput
PyUserInput copied to clipboard
How to press Ctrl + Alt + Delete
I tried this:
k.press_keys([k.control_key, k.alt_key, k.delete_key]);
and this:
k.press_keys(k.control_key) k.press_key(k.alt_key) k.tap_key(k.delete_key) k.release_key(k.control_key) k.release_key(k.alt_key)
I would not be surprised if this is a security measure. Did you try if any of the individual keys work? Like, try deleting some text, or sending a CTRL+V. Needs more information. I'm assuming this is on Windows?
This is indeed on Windows and I've tested with ctrl + v, that one works. But stuff like ctrl+alt+delete and windows+L do not work, maybe due to security reasons, if there a way around it??