I am trying to create a script that will install Filemaker Pro 8.5 Advanced during my unattended XP install. All goes well until it gets to the window that asks if I want to do a complete or custom install. This window is no different then any of the previous windows with one exception. Between the previous page and this one you can see another window/process run really fact and disappear. How can I get around this? Here is my script. The red entry is where I am stuck. Thanks for any help you can offer. Run("setup.exe") WinWaitActive("Choose Setup Language") Send("{ENTER}") WinWaitActive("FileMaker Pro 8.5 Advanced Setup") Sleep(5000) ControlClick("FileMaker Pro 8.5 Advanced Setup", "Welcome to the InstallShield Wizard for FileMaker Pro 8.5 Advanced", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "Customer Information") Send("Admin") Send("{TAB}") Send("{TAB}") Send("36F34") Send("69C76") Send("E4934") Send("8BF70") Send("0A54A") Send("8FDD3") Send("A6C11") ControlClick ("FileMaker Pro 8.5 Advanced Setup", "Customer Information", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "License Agreement") ControlClick("FileMaker Pro 8.5 Advanced Setup", "License Agreement", "I &accept the terms in the license agreement") ControlClick("FileMaker Pro 8.5 Advanced Setup", "License Agreement", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "Destination Folder") ControlClick("FileMaker Pro 8.5 Advanced Setup", "Destination Folder", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "Application Shortcuts") ControlClick("FileMaker Pro 8.5 Advanced Setup", "Application Shortcuts", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "Setup Type") ControlClick("FileMaker Pro 8.5 Advanced Setup", "Setup Type", "&Next >") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "Ready to Install the Program") ControlClick("FileMaker Pro 8.5 Advanced Setup", "Ready to Install the Program", "&Install") WinWaitActive("FileMaker Pro 8.5 Advanced Setup", "InstallShield Wizard Completed") ControlClick("FileMaker Pro 8.5 Advanced Setup", "InstallShield Wizard Completed", "&Finish") WinWaitActive("FileMaker Product Registration") ControlClick("FileMaker Pro 8.5 Advanced Setup", "", "&Cancel") WinWaitActive("Registration is not completed") ControlClick("Registration is not completed", "", "&Yes")