Benzal Posted June 30, 2005 Posted June 30, 2005 (edited) I've made an autoit script.All works fine but when isobuster opens up I cant get it to close...Here is my script:Run ("IsoBuster_1804_(All_languages).exe /VERYSILENT")WinWaitActive ("Registration will enable IsoBuster PRO functionality")Send ("Predator@revenge.com_8L6RCO3TBOQR9RETD")Send ("{TAB}")Send ("****************************************")Send ("{TAB}")Send ("{ENTER}")WinWaitActive ( "Online Check" )Send ("{ENTER}")WinWaitActive ("IsoBuster - Pro - 1.8")WinClose ("IsoBuster - Pro - 1.8")Can anyone help???? Edited July 2, 2005 by Benzal
MHz Posted June 30, 2005 Posted June 30, 2005 Try changing your last line withFor $i = 1 To 5 WinClose("IsoBuster - Pro - 1.8") If Not WinExists("IsoBuster - Pro - 1.8") Then ExitLoop Sleep(250)NextThis will try, up to 5 times to close the window.I normally notice that during RunOnce, you need to ask the window twice, to close.
redfive19 Posted July 1, 2005 Posted July 1, 2005 I hope you didn't just put your serial # for all to see...you should edit that if you did.As far as the auto it script goes, let me check mine out and I'll get back to you wth how I do it.
Benzal Posted July 2, 2005 Author Posted July 2, 2005 Good mention oops i put the serial on here....Nevermind....Cheers 4 your help...
spachtler Posted July 4, 2005 Posted July 4, 2005 (edited) this works perfect:run("setup.exe")winwait("Setup - IsoBuster", "Wizard")controlclick("Setup - IsoBuster", "Wizard", "TButton1")winwait("Setup - IsoBuster", "Agreement")controlclick("Setup - IsoBuster", "Agreement", "TRadioButton1")controlclick("Setup - IsoBuster", "Agreement", "TButton2")winwait("Setup - IsoBuster", "Information")controlclick("Setup - IsoBuster", "Information", "TButton2")winwait("Setup - IsoBuster", "Destination")controlclick("Setup - IsoBuster", "Destination", "TButton3")winwait("Setup - IsoBuster", "Start Menu")controlclick("Setup - IsoBuster", "Start Menu", "TButton4")winwait("Setup - IsoBuster", "associations")controlclick("Setup - IsoBuster", "associations", "TButton4")winwait("Setup - IsoBuster", "Additional")controlclick("Setup - IsoBuster", "Additional", "TButton4")winwait("Setup - IsoBuster", "Ready")controlclick("Setup - IsoBuster", "Ready", "TButton4")winwait("Setup - IsoBuster", "Completing")controlclick("Setup - IsoBuster", "Completing", "TButton4")winwait("Registration will enable IsoBuster PRO functionality", "Register", 2)if winexists("Registration will enable IsoBuster PRO functionality", "Register") thencontrolsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit2", "user@host.com_LI3R354*****3R0E3")sleep(1000)controlsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit1", "FD3F85F3-FEA50855-********-93BE0E7C-EE3826B8-F6BA4E1C")sleep(1000)controlclick("Registration will enable IsoBuster PRO functionality", "Register", "TButton5")sleep(1500)ProcessClose("IsoBuster.exe")exitendifwinwait("Online Check", "online", 2)if winexists("Online Check", "online") thenProcessClose("IsoBuster.exe")exitendifwinwait("Registration will enable IsoBuster PRO functionality", "Register", 2)if winexists("Registration will enable IsoBuster PRO functionality", "Register") thencontrolsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit2", "user@host.com_LI3R354*****3R0E3")sleep(1000)controlsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit1", "FD3F85F3-FEA50855-********-93BE0E7C-EE3826B8-F6BA4E1C")sleep(1000)controlclick("Registration will enable IsoBuster PRO functionality", "Register", "TButton5")sleep(1500)ProcessClose("IsoBuster.exe")exitendifwinwait("Online Check", "online", 2)if winexists("Online Check", "online") thenProcessClose("IsoBuster.exe")exitendifwinwait("Registration will enable IsoBuster PRO functionality", "Register", 2)if winexists("Registration will enable IsoBuster PRO functionality", "Register") thencontrolsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit2", "user@host.com_LI3R354*****3R0E3")sleep(1000)controlsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit1", "FD3F85F3-FEA50855-********-93BE0E7C-EE3826B8-F6BA4E1C")sleep(1000)controlclick("Registration will enable IsoBuster PRO functionality", "Register", "TButton5")sleep(1500)ProcessClose("IsoBuster.exe")exitendifwinwait("Online Check", "online", 2)if winexists("Online Check", "online") thenProcessClose("IsoBuster.exe")exitendifwinwait("Registration will enable IsoBuster PRO functionality", "Register", 2)if winexists("Registration will enable IsoBuster PRO functionality", "Register") thencontrolsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit2", "user@host.com_LI3R354*****3R0E3")sleep(1000)controlsend("Registration will enable IsoBuster PRO functionality", "Register", "TEdit1", "FD3F85F3-FEA50855-********-93BE0E7C-EE3826B8-F6BA4E1C")sleep(1000)controlclick("Registration will enable IsoBuster PRO functionality", "Register", "TButton5")sleep(1500)ProcessClose("IsoBuster.exe")exitendifwinwait("Online Check", "online", 2)if winexists("Online Check", "online") thenProcessClose("IsoBuster.exe")exitendifexitit includes all cases, wich windows could popup....oooops, i put the serial on here too edited... Edited July 4, 2005 by spachtler
Benzal Posted July 4, 2005 Author Posted July 4, 2005 Soz 2 say but it still doesnt close final app window...Thanx 4 your help though...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now