Jump to content

Install Sheild automation issue


Recommended Posts

Hello All,

I am facing a very strange issue. I am trying to automate and installer. When the installer finishes copying over the files, it Tries to start a couple of services on my PC. However since my PC does not have admin rights it fails. Now since this is an error condition, I have come up with a structure like this:

I declare 3 functions namely Error_Condition, Error_Handler() and Post_Install

Error_Condition() checks if the error has happened and whether any popup window with Text "Error" is active. If it gets the popup window in the active state, it call the finction Error_Handler() which actually Finds the error message and logs it in a log file. Else if there is no popup then it goes to the Post_Install() part which is nothing but clicking the Finish button on the final window.

Below is the code for the function Error_Condition()

Func Error_Condition()

$state = WinWaitActive("Installer window name","Error")

If $state<>0 Then

Error_Handler()

Do

Sleep(1000)

ElseIf $state=0 Then

Post_Install()

EndIf

EndFunc

=========================================================================================

Now the problem which I am facing is very strange. When the error happens and the popup window is active, the If statement is executed properly. However when there is no error and the installation is successful, then it does not go the Else section of the code.

Any help from the forum to handle this would be highly appreciated. Also since I am very new to Autoit, would appreciate if the solution is elaborate.

Regards,

Hirak

Link to comment
Share on other sites

I'm surprised that even runs the way it's written. You have a Do in there with no Until statement to close it.

BTW, if the check for "$state <> 0" fails, then $state will ALWAYS = 0 so there's no reason to test for it. Just use an Else statement instead of an ElseIf.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

You need a timeout on that winwaitactive (3rd param), else you will wait forever. Possibly a loop, or something like

; loop 5 times, 1 second each

For $i = 1 to 5

$bFound = WinWaitActive ("blah","",1)

If $bFound Then ExitLoop

Next

Note: double negatives are much more difficult than a positive ie using If $b <> 0 Then, rather than If $b Then

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...