jvanegmond Posted September 4, 2006 Share Posted September 4, 2006 I've always looked at this topic from a distance.. And I've always wondered how this got so many posts.. After I press "Add Reply", I know why. This is really a lame topic. github.com/jvanegmond Link to comment Share on other sites More sharing options...
Valuater Posted June 3, 2007 Author Share Posted June 3, 2007 I've always looked at this topic from a distance.. And I've always wondered how this got so many posts.. After I press "Add Reply", I know why. This is really a lame topic.Guess you were right Manadar....Not a post since September 068) Link to comment Share on other sites More sharing options...
icadea Posted November 25, 2007 Share Posted November 25, 2007 this should be given an autoit award. thanks for making this wonderful script Link to comment Share on other sites More sharing options...
goldenix Posted November 25, 2007 Share Posted November 25, 2007 Okkey ..so i press couple times Left CTRL +Esc & I get the start meny to appear & I can shut down, or log out, or restart..etc...soo this wont protect evan from a newbie....I wonder if this will ever be fixed? No I cant do it myself, Cuz I I have no idea how...just letting you know of this bug. My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list] Link to comment Share on other sites More sharing options...
Valuater Posted November 25, 2007 Author Share Posted November 25, 2007 (edited) this should be given an autoit award. thanks for making this wonderful script Thanks8) Edited November 25, 2007 by Valuater Link to comment Share on other sites More sharing options...
MrCreatoR Posted November 25, 2007 Share Posted November 25, 2007 Hi Valuater,Nice idea, but i can disable the locking - i press Ctrl Alt Del (for taskmgr dialog), and then i select AutoIt3.exe process and quickly press Del key, then the dialog will not close, and when i press Enter, the computer is unlocked - the only problem is that i need to restart Explorer.exe process after that Btw, maybe you have an idea on how to lock Power/Sleep/Wakeup keys? (they are present on not standard keyboard). Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team Link to comment Share on other sites More sharing options...
Valuater Posted November 26, 2007 Author Share Posted November 26, 2007 (edited) Hi Valuater,Nice idea, but i can disable the locking - i press Ctrl Alt Del (for taskmgr dialog), and then i select AutoIt3.exe process and quickly press Del key, then the dialog will not close, and when i press Enter, the computer is unlocked - the only problem is that i need to restart Explorer.exe process after that Btw, maybe you have an idea on how to lock Power/Sleep/Wakeup keys? (they are present on not standard keyboard).Obviously with this script imitating taking pictures and uploading info, there are a few holes. It was not designed to keep the computer person off, it was designed to keep people off the computer... 8) Edited November 26, 2007 by Valuater Link to comment Share on other sites More sharing options...
FreeFry Posted January 11, 2008 Share Posted January 11, 2008 Hehe, nice script. Though I would rather use mine(I think it's a little more secure) expandcollapse popup#include <GUIConstants.au3> #include <String.au3> Opt("WinTitleMatchMode", 4) Opt("MouseCoordMode", 1) Opt("CaretCoordMode", 1) Opt("WinWaitDelay", 0) Global Const $Password = InputBox("First Run", "Input password to use for unlocking.", "", "*") 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 = 200 GLobal Const $Height = 200 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() 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, "Input Password") If $iText == $oiText And $iText <> "" Then GUICtrlSetData($lHandle, "Denied!") GUICtrlSetData($iHandle, "") SoundPlay(@ScriptDir & "\Deny.wav", 0) ElseIf $iText <> $oiText And $iText == $Password Then GUICtrlSetData($lHandle, "Access Granted!") WinSetTitle($gHandle, "", "Computer Unlocked!") Sleep(500) 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) WEnd Link to comment Share on other sites More sharing options...
Nbanonimous Posted January 16, 2008 Share Posted January 16, 2008 this doesnt work i mean its cool but anyone could control alt delete i even managed to open up a program i hit the windows key and it opened start menu and i logged off... Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com Link to comment Share on other sites More sharing options...
Valuater Posted January 16, 2008 Author Share Posted January 16, 2008 this doesnt worki mean its coolbut anyone could control alt deletei even managed to open up a programi hit the windows key and it opened start menuand i logged off...Which one doesnt work???...!!!8) Link to comment Share on other sites More sharing options...
Nbanonimous Posted January 16, 2008 Share Posted January 16, 2008 both of yours is there some code that can disable windows key and control alt delete while its locked? then it'll be brilliant! Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com Link to comment Share on other sites More sharing options...
FreeFry Posted January 17, 2008 Share Posted January 17, 2008 Mine should have no problem preventing using the task manager, or anything else, as it keeps the focus on it's own gui window all the time... Only thing it cant prevent is locking the computer/logging off with hotkeys... Link to comment Share on other sites More sharing options...
Glyph Posted January 21, 2008 Share Posted January 21, 2008 (edited) LOL, I thought for sure i'de remember the pass, then I didn't. I brang that upon myself there, hahah! Edited January 21, 2008 by BackStabbed tolle indicium Link to comment Share on other sites More sharing options...
Nbanonimous Posted January 25, 2008 Share Posted January 25, 2008 how do you disable Control Alt Delete or any command that can break the lock without the password? Best Free Undetectable Proxies!www.CPUMod.netwww.CellFoneTrader.comwww.TindoraFarms.com Link to comment Share on other sites More sharing options...
metalicaman8 Posted May 14, 2008 Share Posted May 14, 2008 I cant find VAULT.dat on my computer. Also, if I change CODEDim $KEY = "362436" to CODEDim $KEY = "mypassword" will password be mypassword? [center]Take the Magic: The Gathering 'What Color Are You?' Quiz.[/center] Link to comment Share on other sites More sharing options...
Glyph Posted August 18, 2008 Share Posted August 18, 2008 I can press windows key to get into run - > cmd!! XP sp3 with vista conversion also the icons on the desktop blink, heh. worked on my regular XP SP2 though, so idk. tolle indicium Link to comment Share on other sites More sharing options...
Valuater Posted August 19, 2008 Author Share Posted August 19, 2008 how do you disable Control Alt Deleteor any command that can break the lockwithout the password?There are a couple of "take-offs" after I wrote this script. some handle the Ctrl-Alt-Del better than thisI cant find VAULT.dat on my computer. Also, if I change CODEDim $KEY = "362436" to CODEDim $KEY = "mypassword" will password be mypassword?that should work... did you try it?????I can press windows key to get into run - > cmd!!XP sp3 with vista conversionalso the icons on the desktop blink, heh.worked on my regular XP SP2 though, so idk.Thanks BackStabbed, I haven't put much attention into this since its release, its just for fun with a camera taking pictures and uploading them to a website...lolthx8) Link to comment Share on other sites More sharing options...
aphesia Posted February 15, 2009 Share Posted February 15, 2009 somehow this doesnt work for me at all? i creates a window where i can input a password.. if its wrong i get this "uplaoding to vaulter.net blabla".. but no photo/log in script dir.. and also i can jst click cancel to close or press the "x" .. oO Link to comment Share on other sites More sharing options...
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