UltraIso V7.21 R2
#1
Posted 21 August 2004 - 03:34 PM
I tried copying the Reg keys but it just does not work.
TIA
#2
Posted 21 August 2004 - 06:03 PM
to another, because during the normal dialog for name and
serial, it will first merge the name and SN with some
machine-specified things or numbers, and then put it into
the registry, so that you will find
always different registry-entries on different machines
with the same name and SN. so the only way to get valid
entries is to use the ultraiso dialog to put in the infos.
i do it with an autoit-script..... works pretty good....
#3
Posted 21 August 2004 - 06:54 PM
Could you give me an idea of your script?
TIA
#4
Posted 22 August 2004 - 03:35 AM
$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\EasyBoot Systems\UltraISO\5.0", "")
run($var & "\Ultraiso.exe")
Blockinput(1)
winwait("UltraISO", "ToolBar", 7)
if winexists("UltraISO", "ToolBar") then
processclose("ultraiso.exe")
Blockinput(0)
exit
endif
winwait("Willkommen", "registrieren")
controlclick("Willkommen", "registrieren", "TButton4")
winwait("Registrieren", "OK")
controlsend("Registrieren", "OK", "TEdit4", "valid name")
controlsend("Registrieren", "OK", "TEdit5", "serial part1")
controlsend("Registrieren", "OK", "TEdit3", "serial part2")
controlsend("Registrieren", "OK", "TEdit2", "serial part3")
controlsend("Registrieren", "OK", "TEdit1", "serial part4")
controlclick("Registrieren", "OK", "TButton2")
winwait("Prompt", "OK")
controlclick("Prompt", "OK", "Button1")
Blockinput(0)
exit
this is for the german version, for the english you have to
chage some words (Registrieren to Register) or so....
#6
Posted 23 August 2004 - 09:17 AM
$var = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\EasyBoot Systems\UltraISO\5.0", "")
run($var & "\Ultraiso.exe")
Blockinput(1)
winwait("UltraISO", "ToolBar", 7)
if winexists("UltraISO", "ToolBar") then
processclose("ultraiso.exe")
Blockinput(0)
exit
endif
winwait("Welcome", "Enter Registration Code")
controlclick("Welcome", "Enter Registration Code", "TButton4")
winwait("Register", "OK")
controlsend("Registration", "OK", "TEdit4", "name")
controlsend("Registration", "OK", "TEdit5", "xxxx")
controlsend("Registration", "OK", "TEdit3", "xxxx")
controlsend("Registration", "OK", "TEdit2", "xxxx")
controlsend("Registration", "OK", "TEdit1", "xxxx")
controlclick("Register", "OK", "TButton2")
winwait("Prompt", "OK")
controlclick("Prompt", "OK", "Button1")
Blockinput(0)
exit
#7
Posted 23 August 2004 - 01:24 PM
#8
Posted 23 August 2004 - 02:21 PM
try winwait("Registration", "OK")
controlclick("Register", "OK", "TButton2")
controlclick("Registration", "OK", "TButton2")
#9
Posted 24 August 2004 - 06:53 AM
#10
Posted 24 August 2004 - 07:16 AM
anyway this method wont help me since
i run it in runonce
i thought someone figured out abetter solution for this crap
guess ill have to register it manually
#11
Posted 24 August 2004 - 07:33 AM
#13
Posted 26 August 2004 - 02:51 PM
#15
Posted 29 August 2004 - 11:09 AM
Quote
run($var & "\Ultraiso.exe")
Blockinput(1)
winwait("UltraISO", "ToolBar", 7)
if winexists("UltraISO", "ToolBar") then
processclose("ultraiso.exe")
Blockinput(0)
exit
endif
winwait("Welcome")
controlclick("Welcome", "Enter Registration Code", "TButton4")
winwait("Registration", "OK")
controlsend("Registration", "OK", "TEdit4", "User Name")
controlsend("Registration", "OK", "TEdit5", "XXXX")
controlsend("Registration", "OK", "TEdit3", "XXXX")
controlsend("Registration", "OK", "TEdit2", "XXXX")
controlsend("Registration", "OK", "TEdit1", "XXXX")
controlclick("Registration", "OK", "TButton2")
winwait("Prompt", "OK")
controlclick("Prompt", "OK", "Button1")
Blockinput(0)
exit
Note: XXXX = serial number
Now use AutoIt to creat an .exe and execute from unattende installation, I tried 3 times and worked.
#16
Posted 29 August 2004 - 01:43 PM
#18
Posted 29 August 2004 - 06:58 PM
#19
Posted 30 August 2004 - 04:46 AM
but realy i don't know how to use the script files
how can I use it with RunOnceEx ??
thanx again
#20
Posted 30 August 2004 - 07:19 AM
Autoit will create a executable script meaning when you run it it will start executing the script, for more info go to:
http://www.hiddensoft.com/autoit3/
You can add to your RunOnceEx as if it was another .exe file right after you install the UltraISo program and it will run and add the registration info to the program.
I hope it helps.



Help

Back to top









