thanks for sharing this. same "problem here" when closing the password window the whole tool closes. possible fix: Case $nMsg = -3 GUIDelete($GUI) _Menu() instead of Exit command ******* you were asking: I need some help on the _Check() to check if password is set. If password is set, display a Inputbox for the password, decrypt is and set * Set Password * button disable. try this: Func _Menu() $GUI = GUICreate("Menu~", 170, 285, -1, -1) $ApplicationLauncher = GUICtrlCreateButton("Application Launcher", 10, 10, 150) $ComputerInformation = GUICtrlCreateButton("Computer Information", 10, 40, 150) $MouseInformation = GUICtrlCreateButton("Mouse Information", 10, 70, 150) $Hexing = GUICtrlCreateButton("Hexing", 10, 100, 150) $ComputerPrograms = GUICtrlCreateButton("Computer Programs", 10, 130, 150) $Games = GUICtrlCreateButton("Games", 10, 160, 150) $WindowManager = GUICtrlCreateButton("Window Manager", 10, 190, 150) $Password = GUICtrlCreateButton("* Set Password *", 10, 220, 150) $Homepage = GUICtrlCreateButton("AutoIt Homepage", 10, 250, 150) $ConfigFile = "C:\temp\$~settings.ini" $k = _FileCountLines ($ConfigFile) For $i = 1 to $k Step 1 $ReadFile = FileReadLine($ConfigFile, $i) If StringInStr($ReadFile,"Pass=") Then $Split = StringSplit($ReadFile,"Pass=",1) $ReadSplit = $Split[$Split[0]] If $ReadSplit <> "" Then GUICtrlSetState($Password,$GUI_DISABLE) EndIf EndIf Next [........] This will read the settings.ini and if there is a password stored it will disable the button in the main gui. You need to #include<File.au3> for the _FileCountLines command or leave it out and use a number (possible number of lines in the final settings.ini) instead of $k hope this helps cheers