I created a few applications in autoit to help with deploying new laptops to our company. Just recently, on several of our laptops, while Autoit is running an install using RunWait, windows will dim the autoit application i made and report that it is not responding, even though the application is still installing.
Relevant part of the script:
Also note this happens at random with different installers. what is Windows seeing that it thinks the script is no longer responding?
Relevant part of the script:
[ autoit ]
Global $LocAdobe = "\\MyShare\Installer\!Win7Profiler!\Supporting_Files\Adobe Acrobat 10 Pro Win7 only\setup.exe" ; somewhere far down the script... GUICtrlSetData($Label1, "Installing Adobe X Pro") GUICtrlSetFont($Label1, 35, 800, 0, "Arial Narrow") GUICtrlSetColor($Label1, 0x000000) GUICtrlSetBkColor($Label1, 0xFFFF00) RunWait($LocAdobe) GUICtrlSetData($Label1, "Complete") GUICtrlSetFont($Label1, 12, 800, 0, "Arial Narrow") GUICtrlSetColor($Label1, 0x000000) GUICtrlSetBkColor($Label1, 0x00FF00)
Also note this happens at random with different installers. what is Windows seeing that it thinks the script is no longer responding?