I am having trouble trying to get, what I think, is a simple script to work. The script is being written to automate the uninstall of a program from client machines. I am writing the script on a Windows 7 VM running on VMware Workstation 12 Pro. I have compiled the script and tried it on a physical client with the same results.
Code: Select all
ExecuteFile>runas.exe,/user:admin "C:\Program Files (x86)\InstallShield Installation Information\{2AC77847-6E50-419D-B12C-693461BF3290}\setup.exe -runfromtemp -l0x0409 -removeonly"
Wait>1
Let>SK_IGNORECAPS=0
SendText>*******
Press Enter
Wait>15
FindImagePos>snapshot_0.png,SCREEN,0,0,XArr,YArr,NumFound,CCOEFF
Let>mXPos=%XArr_0% + 431
Let>mYPos=%YArr_0% + 117
MouseMove>mXPos,mYPos
LClick
Everything is working until it gets to the MouseMove. I do not see the mouse move. If the mouse is moving, I am not seeing the LClick work. The code as it is written is trying to click a "No" button. The mXPos and the mYPos variables have the correct position saved.
Any help with this would be greatly appreciated.
Brian