Jump to content

Basic script

Araero

I hope i am in the correct category. but my question is that i need a script that presses CTRL+ALT+Delete then waits 1 second then presses Esc

 

Anybody knows how to make that?

Link to comment
Share on other sites

Link to post
Share on other sites

I would recommend AutoHotKey(AHK), simple scripting language that is focused on well, automating hotkeys.
the script your asking for would look something like so:

Send, !^DEL
Sleep, 1000
Send, ESC
return

 

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×