Jump to content

Block Computer


Recommended Posts

Hi to everyone...

Some could give some tip where i could begin to write something that works like this:

I want that a MsgBox appear on the window and the computer stay block on it, it's only get out when type the right password..

But when this MsgBox is open, others program could run on back-ground, like block your computer but you're passing a anti-virus scan.

Hope that some could give some tip...

Thanks..

Bruno

Link to comment
Share on other sites

Here it is

All is blocked

esc exit

alt+f4 exit

killing by taskmanager

;~ here is my idea
#include <GUIConstants.au3>
Opt("OnExitFunc", "endscript")
HotKeySet("!{f4}", "noexit");Block f4 close
AutoItSetOption("GUICloseOnESC", 0);Block esc key
Run("taskmgr")
WinWaitActive("Windows Task Manager")
WinSetState("Windows Task Manager","",@SW_HIDE);Here we disable daskmanager,so users cant kill this window with task manager

$Form1 = GUICreate("Block", @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP)
WinSetOnTop("Block","",1)
$ex = GUICtrlCreateButton ("Exit",0,0)
    $Passwordp = guictrlcreatelabel("You must enter password to close this window",3,30)
    Global $Password = GUICtrlCreateInput ("",3,60,120,25)
GUISetState(@SW_SHOW)

While 1
        $msg = GUIGetMsg ()
    Switch $msg
        case $ex 
            endscript ()
    EndSwitch
WEnd

Func endscript()
    $pass = GUICtrlRead ($Password)
    If $Pass = "TypeYourPasswordHere" Then
        ProcessClose("taskmgr.exe"); to enable task manager again
        Exit
    Else
    EndIf
EndFunc ;==>endscript


Func noexit ()
EndFunc ;==>noexit
Edited by au3scr
Link to comment
Share on other sites

*Vaulter* PC Lockout

Cracked

1 keepdown ctrl alt del, ctrl shift esc

keep them down long time to make SPAMM

2 Keep going until u get lag

3 continue spamming these key combinations

4 Task manager msg box should popup, keep spamming and click on yes

5 if u have oter message boxes click yes untill they have gone

6 press ctrl shift esc and you get into task manager

7 Kill locker

8 kill explorer

9 start explorer again

Link to comment
Share on other sites

Thanks... I will try it and let you know the result...

thanks...

Bruno

Here it is

All is blocked

esc exit

alt+f4 exit

killing by taskmanager

;~ here is my idea
#include <GUIConstants.au3>
Opt("OnExitFunc", "endscript")
HotKeySet("!{f4}", "noexit");Block f4 close
AutoItSetOption("GUICloseOnESC", 0);Block esc key
Run("taskmgr")
WinWaitActive("Windows Task Manager")
WinSetState("Windows Task Manager","",@SW_HIDE);Here we disable daskmanager,so users cant kill this window with task manager

$Form1 = GUICreate("Block", @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP)
WinSetOnTop("Block","",1)
$ex = GUICtrlCreateButton ("Exit",0,0)
    $Passwordp = guictrlcreatelabel("You must enter password to close this window",3,30)
    Global $Password = GUICtrlCreateInput ("",3,60,120,25)
GUISetState(@SW_SHOW)

While 1
        $msg = GUIGetMsg ()
    Switch $msg
        case $ex 
            endscript ()
    EndSwitch
WEnd

Func endscript()
    $pass = GUICtrlRead ($Password)
    If $Pass = "TypeYourPasswordHere" Then
        ProcessClose("taskmgr.exe"); to enable task manager again
        Exit
    Else
    EndIf
EndFunc;==>endscript


Func noexit ()
EndFunc;==>noexit
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...