Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/18/2011 in all areas

  1. BrewManNH

    Xcopy GUI

    I'm glad I could help, the GUI idea you came up with was very useful for me as I have to copy things back and forth on my network drives a lot.
    1 point
  2. I have searched the forum and the internet but I couldn't find a way to let an ordinary user change it's domain password using AutoIt or whatever language.This might be for security reasons because the user can't be sure what the program does with his credentials. Best way I can think of is to set a flag in Active Directory so the user has to change the password on next logon.
    1 point
  3. #include <IE.au3> Global $gs_Username = "MyUsername" Global $gs_Password = "MyPassword" Global $go_IE = _IEAttach("Wupload, ultimate file hosting") If Not IsObj($go_IE) Then Exit 1 Global $go_Username = _IEGetObjById($go_IE, "email") If Not IsObj($go_Username) Then Exit 2 Global $go_Password = _IEGetObjById($go_IE, "password") If Not IsObj($go_Password) Then Exit 3 Global $go_Submit = _IEGetObjById($go_IE, "controls-submit") If Not IsObj($go_Submit) Then Exit 4 $go_Username.Value = $gs_Username $go_Password.Value = $gs_Password _IEAction($go_Submit, "click") If @error Then Exit 5 Exit 0 ; success
    1 point
×
×
  • Create New...