Jump to content

blockinput


Recommended Posts

According to the documentation, blockinput can be bipassed by pressing ctrlaltdel because of the windows api, and i was doing some research, but it looks like if you system hook the keys you could intercept the msg before the system, but i couldn't find any hook examples that i could understand what they were doing. does anyone have any experiance doing this or maybe another method?

Link to comment
Share on other sites

I don't think hooking works, either, though I may be wrong. That key combination is caught at the OS level and the only way you might have a chance is if you write a driver to get to it at that level. Again, I could be wrong, but I'm sure Google will know.

Link to comment
Share on other sites

  • 1 month later...

I got this off of the fourms somewhere, its cool...

opt("WinTitleMatchMode", 4)
While 1
Sleep(15);;don't use the cpu too hard
If WinExists("classname=#32770") Then
WinSetState("classname=#32770", "", @SW_DISABLE)
Sleep(15);;don't use the cpu too hard
EndIf
WEnd

What this does is disable the gui of taskmanager. If you want you can do a 2 fold thing, where u add @SW_HIDE as well. Just make sure to add @SW_ENABLE so the box isnt cooked.

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...