Jump to content

mscrx

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by mscrx

  1. that wouldn't matter because the one I gave you only checks if a password was written to the ini file... well, that was just an idea...
  2. thanks for sharing. works great. unfortunately no autoclosing for laptop drives - by design :-)
  3. 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
  4. thanks for the tool. do you have an enlish config.ini file? the one in the zip contains values like this: tools_and_options = "¹¤¾ßÑ¡Ïî(&O)" set_window_topmost = "Öö¥´°¿Ú(&T)" remove_window_topmost = "È¡ÏûÖö¥(&M)" config_menu = "ÅäÖò˵¥(&C)" or do I do something wrong with it? many thanks edit: sorry, my fault. I should read everything in the ini file first - especially the remarks :-)
  5. nice tool. one thing from my side. if you don't select anything and click go it will add a blank line. maybe you can build in an error if nothing was selected. otherwise no sense in that. thanks
  6. really nice, thanks one thing to add is whenever I click cancel in the "add new computer" box it doesn't cancel and tells me the syntax of the hostname is wrong. this ends up in a loop... if you try just to cancel
  7. you can preselect a folder FileSelectFolder("here is your folder", @WindowsDir) in this case the Windows directory is where your folder select dialog box starts.
  8. ;******************************************************************** ;*** Function Name: OMCI_AdminPW ;*** Usage: OMCI_AdminPW ("Target", "Old Password", "New Password") ;*** ;*** Notes: To apply to local computer use "." as target, to clear ;*** the admin password, set the new password as "" ;******************************************************************** Func OMCI_AdminPW ($strComputerName, $strOldPwd, $strNewPwd) $obj = ObjGet('WinMgmts:{impersonationLevel=impersonate}//'& $strComputerName & '/root/Dellomci:Dell_Configuration="Configuration"') $obj.Properties_.Item("Password").Value = $strOldPwd & ' ' & $strNewPwd $obj.Properties_.Item("PasswordEncrypted").Value = 0 $obj.Put_() EndFunc nice one! any idea how to read the current password?
  9. muchos thankos thats what I was looking for!
  10. thanks, but the first one equals my first one and the second one doesn't work at all.
  11. hi all, i wanted to have a gui which starts as maximized window. first try: #include <GUIConstants.au3> $GUI = GUICreate("",@DesktopWidth,@DesktopHeight,0,0,$WS_MAXIMIZEBOX) GUISetState() While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend opens a gui but movable and overlapping the taskbar second try: #include <GUIConstants.au3> $GUI = GUICreate("",100,100,0,0,$WS_MAXIMIZEBOX) GUISetState(@SW_MAXIMIZE) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend will not even show the gui any idea? I just want the gui to start in fullscreen (maximized) and not hiding the taskbar under it) thanks for help
  12. I tried to get the value of the background color from [HKEY_CURRENT_USER\Control Panel\Colors] Background"="58 110 165" but when I use this value 58110165 as bg color for the gui it wont be the same color as it is on the desktop. I assume this is because the desktop color is being calculated by 3 other factors (hue, sat, lum). is it possible to get the correct value for the color somewhere else so that the gui has the same color?
  13. Hi guys, I have one question for you. Is there any restriction for the lenght of a file path 'like 256 chars' for the DirCopy or FileCopy command? Thanks, mscrx
  14. That one works great! thank you very much! Martin
  15. hi guys, I am not new to autoit but I am everything but a programmer so here is my question: I have FileSelectFolder in a script and I want to use the folder name again later in the script but not the full path e.g. "c:\program files\anyapps" but the folder name "anyapps". Any idea how to do this in an easy way? thanks, Martin
×
×
  • Create New...