Jump to content

copiche

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by copiche

  1. That did it!, the Sleep was missing. I kept the {DOWN} in like: Send("!ll{DOWN}") Sleep(500) Send("B") And it worked!. Thank you very much
  2. Hello, I have a script that is supposed to launch an ICA file and then it is supposed to login with a username and password which it does with no problems. However I need to make autoit choose an ALT+L+L then {Down} and then choose the "Show Board" drop down option which has the underlined "B" in the drop down menu, shown here: Autoit, then hangs in the above screen (it chooses the ALT+L+L{Down} option fine); however the "Show Board" never happens and it stays in the above stage. Here is my Autoit Script: Run("c:program filescitrixica clientwfica32.exe C:surginettrackingSurginetTrackingGreaseboard.ica") Sleep(20000) Send("xxxxxx") sleep(1000) Send("{TAB}") Sleep(1000) Send("xxxxxxx") Sleep(1000) Send("{ENTER}") Sleep(9000) WinWaitActive("SNSurgiNet Organizer for SURGINET, SNCSGI - Remote") Send("!ll{DOWN}B") While ProcessExists("wfica32.exe") Sleep(10000) WEnd Shutdown(0) Any help is greatly appreciated. Thanks
  3. Hello, I have been playing around this script. The whole purpose of the script is to launch the citrix .ica file, type in some login credentials and show a tracking board forever. I want the script to keep looking for the process "wfica32.exe" to be running, if not, reboot the device. I placed this script in the startup folder of the computer so when it comes back up it runs again. For this I have specified near the end of the script to look for wfica32.exe using While ProcesExists and I have played with the time after the sleep function. If I run the script it works, meaning if I go to task manager and kill wfica32.exe the device indeed reboots. However if I run the script and I leave the computer running for a day (or a long time say 3- 4 hours) and then come back to it, I see the desktop icons (undesired) with the autoit icon in the taskbar and the wfica32.exe NOT RUNNING in the task manager. Even if I try to run the wfica32.exe process manually and then close it (thinking it would trigger the autoit script standing by in the taskbar) it would reboot the unit after I kill the mentioned process, but it still does not. I know with ProcessExists The process is polled approximately every 250 milliseconds but in my case it is not working. Please help and here is the script: Run("c:program filescitrixica clientwfica32.exe c:firstnettrackingFirstnetTrackingGreaseboardP290.ICA") WinWaitActive("HNAM Logon - Remote") Sleep(7000) Send("xxxxxxx") Send("{TAB}") Send("xxxxxxx") Send("{ENTER}") Sleep(9000) WinWaitActive("FirstNet Organizer for FIRSTNET, PLA RX - Remote") Send("!ll{DOWN}B") While ProcessExists("wfica32.exe") Sleep(10000) WEnd Shutdown(2) Thank you.
×
×
  • Create New...