Jump to content

"Locking down the pc"


Recommended Posts

  • Moderators

Hi,

Has anyone found a way to lock the pc down with autoit? I have script and want to only execute that script and disable everything else.

If they had, and they were respectable, I doubt they would post that type of result here in a public forum.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Try my code:

GUICreate("My GUI",@DesktopWidth,@DesktopHeight,0,0)
WinSetTrans( "My GUI", "", 1 )
WinSetOnTop( "My GUI", "", 1 )
GUISetState (@SW_SHOW)

Sleep(5000)

And try to do anything in this 5 sec with the mouse...

For full lock (both mouse and keybord) try BlockInput()... This really locks the PC and only Ctrl+Alt+Del will work...

BlockInput(1)
Sleep(5000)
BlockInput(0)
Link to comment
Share on other sites

hmm there are many ways^^

there also ways to diasable Ctr+Alt+Del

and they are all really easy...

but i wouldnt even say if you pay me 100$....

because so scripts are often disused, to make damage by autoit....

and i / the most users of this forum don't want this

//Edit

And you want to have cam-functions?

lol

1. as it seems you want to make damage

2. none will help you

3. if you wanna make damage learn c, c++, java and assembler

Edited by Analritter

[font="Verdana"]In work:[list=1][*]InstallIt[*]New version of SpaceWar[/list] [/font]

Link to comment
Share on other sites

hmm there are many ways^^

there also ways to diasable Ctr+Alt+Del

and they are all really easy...

but i wouldnt even say if you pay me 100$....

because so scripts are often disused, to make damage by autoit....

and i / the most users of this forum don't want this

//Edit

And you want to have cam-functions?

lol

1. as it seems you want to make damage

2. none will help you

3. if you wanna make damage learn c, c++, java and assembler

Sorry some folks assume the worst as I am up to no good with my queries, but I assure you that these are for legit business purposes (no not attacking anyone/anything)!!! I wouldn't disrespect any forum or software with illegit requests...I leave those up to folks who are really up to no good!

Thanks for the assistance.

Link to comment
Share on other sites

Try my code:

GUICreate("My GUI",@DesktopWidth,@DesktopHeight,0,0)
WinSetTrans( "My GUI", "", 1 )
WinSetOnTop( "My GUI", "", 1 )
GUISetState (@SW_SHOW)

Sleep(5000)

And try to do anything in this 5 sec with the mouse...

For full lock (both mouse and keybord) try BlockInput()... This really locks the PC and only Ctrl+Alt+Del will work...

BlockInput(1)
Sleep(5000)
BlockInput(0)

Thank you...I will give it a try.

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