Jump to content

Disabling user input (ctrl+alt+del)


Recommended Posts

Okay, it's all very well having the BlockInput() function, but is there a way to stop people from being able to press ctrl+alt+del?

I'm getting a bit fustrated with ctrl+alt+del... As soon as I want to do something, autoit can't do it because those keys get in the way ¬_¬

Cheers for any help!

Link to comment
Share on other sites

Doesn't help me disable someone from pressing it when I want too, I basically want to be able to lock a workstation completely, no keyboard, mouse or power buttons.

Autoit just doesn't seem to be up to the job at the moment... *cries*

Link to comment
Share on other sites

if processexists("taskmgr.exe") then
    processkill("taskmgr.exe")
    blockinput(1)
endif

put that in a loop. that will disable CTRL+ALT+DELETE

Edited by mmavipc

[size="10"]Pure Au3 crypt funcs(I'm currently also working on making a dll from this)[/size][Y] Be more active in the community[Y] Get 200 posts[N] Get 300 posts[N] Make a Topic in the example scripts forum with at least 50 replies.People who currently hate me:ValikSmOke_N

Link to comment
Share on other sites

if processexists("taskmgr.exe") then
    processkill("taskmgr.exe")
    blockinput(1)
endif

put that in a loop. that will disable CTRL+ALT+DELETE

Nice idea, but the computers are all on a domain, ctrl+alt+delete brings up the user info page with things like lock workstation, log off, tskmanager

I suppose I could wait for them to press ctrl+alt+delete, press ESC, then lock it again...

Worth a try...

And as for the power button, is it possible to identify when windows is going into shutdown? That way I can just issue, shutdown -a!

Genious? I think so! (Major bodge job also, but such is windows!)

Link to comment
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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...