Jump to content

Recommended Posts

Posted

i'm trying to logon to my owa for work

i have to scripts, 1 that does the shell execute to the owa, and another that enters in my logon info

i've tried combing the 2 scripts into 1, but have no luck.

here is my code

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=owa%20icon.ico
#AutoIt3Wrapper_UseUpx=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#region ---Au3Recorder generated code Start ---

ShellExecute("https://mail.mycompany.org/owa")



_WinWaitActivate("Microsoft Exchange - Outlook Web Access - Microsoft Exchange - Outlook Web Access","Address Combo Contro")
Send("domain\user{TAB}pwd{ENTER}")

#region --- Internal functions Au3Recorder Start ---
Func _WinWaitActivate($title,$text,$timeout=0)
    WinWait($title,$text,$timeout)
    If Not WinActive($title,$text) Then WinActivate($title,$text)
    WinWaitActive($title,$text,$timeout)
EndFunc
#endregion --- Internal functions Au3Recorder End ---

#endregion --- Au3Recorder generated code End ---
Posted

With a web browser you should use IE.au3 functions

i'm just trying to make this as simple as possible, then i will advance more as i learn to include other functions.

is there anyway to make this work?

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...