Nbanonimous Posted February 28, 2008 Posted February 28, 2008 heyg uys if u saw my last post i was trying to revamp a previous program someone released it has one more flaw.... Control Alt Delete brings up Windwos Security heres my code how do i cancel Windows Security with Ctrl Alt Delete? expandcollapse popup#include <GUIConstants.au3> #include <String.au3> Opt("WinTitleMatchMode", 4) Opt("MouseCoordMode", 1) Opt("CaretCoordMode", 1) Opt("WinWaitDelay", 0) Global Const $Password = InputBox("Enter Password", "Enter Password Here.", "", "*") If @error Then Exit Global Const $InputTime = 1000;<---------- EDIT THIS: This sets the time that you have to type the password Global $Status = False Global $oldmPos[4] Global $cTHandle = TimerInit() Global $oiText Global Const $Width = 150 GLobal Const $Height = 100 Global Const $gHandle = GUICreate("Computer Locked!", $Width, $Height, -1, -1, $WS_CAPTION, $WS_EX_TOPMOST + $WS_EX_TOOLWINDOW) Global Const $lHandle = GUICtrlCreateLabel("Input Password", 5, ($Height/2)-20, $Width-15) Global Const $iHandle = GUICtrlCreateInput("", 5, $Height/2, $Width-15, -1, $ES_PASSWORD) GUISetState() HotKeySet("!v", "Terminate") Func Terminate() Exit 0 EndFunc;==>Terminate While 1 $mPos = MouseGetPos() $iText = GuiCtrlRead($iHandle) If $mPos[0] <> $oldmPos[0] Or $mPos[1] <> $oldmPos[1] Then WinMove($gHandle, "", $mPos[0]-($Width/2), $mPos[1]-($Height/2)) EndIf If Not WinActive($gHandle) Then WinActivate($gHandle) EndIf ;~ If TimerDiff($cTHandle) > 1000 Then GUICtrlSetData($lHandle, "Enter Password") If $iText == $oiText And $iText <> "" Then GUICtrlSetData($lHandle, "Denied h4x0r!") GUICtrlSetData($iHandle, "") SoundPlay(@ScriptDir & "\Deny.wav", 0) ElseIf $iText <> $oiText And $iText == $Password Then GUICtrlSetData($lHandle, "Access Granted!") WinSetTitle($gHandle, "", "Computer Unlocked!") Sleep(50) GUIDelete($gHandle) SoundPlay(@ScriptDir & "\Allow.wav", 1) ;~ SoundPlay(@ScriptDir & "\taunt1.wav", 1) ;~ SoundPlay(@ScriptDir & "\taunt2.wav", 1) Exit EndIf $oiText = $iText $cTHandle = TimerInit() EndIf $oldmPos = $mPos Sleep(1) If WinExists('Windows Task Manager') Then WinClose('Windows Task Manager') EndIf MouseMove(512,430) WEnd Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com
Nbanonimous Posted February 28, 2008 Author Posted February 28, 2008 all i need is help getting rid of Control Alt Delete so my program will be perfected Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com
Oldschool Posted February 28, 2008 Posted February 28, 2008 all i need is help getting rid of Control Alt Delete so my program will be perfectedYou'll find what u are looking for at the end of this thread...http://www.autoitscript.com/forum/index.ph...c=40690&hl=
Nbanonimous Posted February 28, 2008 Author Posted February 28, 2008 what was that supposed to do does that disable whole keyboard... cuz i dont need that i need to disable control alt delete Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com
Nbanonimous Posted February 28, 2008 Author Posted February 28, 2008 (edited) I dont want to BLOCK both Control alt delete i jus wanna disable one of those 3 any one to prevent Windows Security when you hit Ctrl Alt Del its the only way outta my program is the ANY way? and is there a way to prevent anyone shutting off ur computer? yes or no question Edited February 28, 2008 by Nblufire12 Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now