DigeratiPrime Posted August 25, 2004 Posted August 25, 2004 Hi does anybody know the switch to silently install UltraISO.exe? Currently I have this:REG ADD %KEY%\065 /VE /D "UltraISO v7.21 SR-2 ME" /fREG ADD %KEY%\065 /V 1 /D "REGEDIT /S %systemdrive%\install\UltraISO\regultraiso.reg" /fREG ADD %KEY%\065 /V 2 /D "%systemdrive%\install\UltraISO\setup.exe /s" /fAlso if its not too much to ask, I've looked around a little, how does one build their own MSI packages?[EDIT] Also I checked Properties>Version and it says:This installation was built with Inno Setup: http://www.innosetup.com
CoffeeFiend Posted August 25, 2004 Posted August 25, 2004 Use /VERYSILENT /SP-(/silent works too)then, if you want:del "%UserProfile%\Desktop\UltraISO.lnk"regedit /s "%cdrom%\install\UltraISO ME v7.21 SR2\ultraiso.reg"contents of ultraiso.reg (to register it):REGEDIT4[HKEY_CURRENT_USER\Software\EasyBoot Systems\UltraISO\5.0]"UserName"="your_name_here""Registration"="whatever's_in_your_registry"Did you even try to search?
DigeratiPrime Posted August 25, 2004 Author Posted August 25, 2004 Thanks alot!btw of course I tried search , I found someone else used a /silent switch for another inno setup. The only other thing I found related to UltraISO was a new version had been released. Im going to give this a try in a few.Thanks Again
WwTIPPYwW Posted August 26, 2004 Posted August 26, 2004 UltraISO encrypts the serial - and it is machine specific. So - good luck!
DigeratiPrime Posted August 26, 2004 Author Posted August 26, 2004 Yeah I tested in on VMware and it didnt work.During RunOnceEx the Setup came up, I had to manually choose accept terms, install directory, etc. After it finished it didnt like the imported registry key. What would be a good alternative, WinISO? I think they're almost the same.
Sanjay Posted October 27, 2004 Posted October 27, 2004 Yeah I tested in on VMware and it didnt work.During RunOnceEx the Setup came up, I had to manually choose accept terms, install directory, etc. After it finished it didnt like the imported registry key. What would be a good alternative, WinISO? I think they're almost the same.WinISO works just fine. My start.cmd entries for WinISO are:ECHO.ECHO Installing WinISO 5.3.0.125ECHO Please wait...start /wait %systemdrive%\Install\Winiso\Winiso53.exe /VERYSILENT /SP-start /wait regedit /s %systemdrive%\Install\Winiso\registerwiniso.reg
CoffeeFiend Posted October 27, 2004 Posted October 27, 2004 The switches work, it's the registration that doesn't.As for alternatives, nothing's quite as good imho, especially for DVD images. As for the basic functions for CD handling, there's dozens of others.
Sanjay Posted October 27, 2004 Posted October 27, 2004 The switches work, it's the registration that doesn't.As for alternatives, nothing's quite as good imho, especially for DVD images. As for the basic functions for CD handling, there's dozens of others.WinISO registration works just fine on my cd. ULtraISO on the other hand is a different story.
vcBlackBox Posted October 27, 2004 Posted October 27, 2004 UltraISO encrypts the serial - and it is machine specific. So - good luck!Well the latest version 7.2.3.906 is NOT machine specific, but the registration serial number is still encrypted.First, do a normal or /SAVEINF setup, run the program, enter registration information, export reg key, and then text edit reg key - preserving Language, UserName and Registration key names only. I tested my silent install on another machine and it works.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\EasyBoot Systems\UltraISO\5.0]"Language"="1033""UserName"="XXXXX""Registration"="XXXXXXXXXXXX"ECHO.ECHO Installing UltraISO 7.x MESTART /WAIT %SystemDrive%\Install\UltraISO\uiso7_me.exe /DIR="%ProgramFiles%\UltraISO" /SP- /VERYSILENTREGEDIT /S %SystemDrive%\Install\UltraISO\reg_uiso.regREM Optional. English language. Space recovered ~1.7MB.RD /S /Q "%ProgramFiles%\UltraISO\lang"DEL /Q "%ProgramFiles%\UltraISO\*.txt"DEL "%AllUsersProfile%\Start Menu\Programs\UltraISO\UltraISO Online Order.LNK"DEL /Q "%AllUsersProfile%\Start Menu\Programs\UltraISO\UltraISO R*.LNK"DEL "%AllUsersProfile%\Start Menu\Programs\UltraISO\UltraISO Web Site.LNK"
1chaoticadult Posted October 28, 2004 Posted October 28, 2004 I can confirm what vcBlackBox said. Doing this way does in fact work. Thanks alot vcBlackbox.
BritishBulldog Posted October 28, 2004 Posted October 28, 2004 or just repack the inno setup.exethere are guides on how to do this, works fine with UltraIso 7.2.3.906
Sanjay Posted October 28, 2004 Posted October 28, 2004 or just repack the inno setup.exethere are guides on how to do this, works fine with UltraIso 7.2.3.906Where might I find such a guide?
possy_99 Posted November 8, 2004 Posted November 8, 2004 guys, I've just slapped together this VBS script for entering the serial info after a silent install... install using silent switch then call this VBS afterwards...Set WshShell = WScript.CreateObject("WScript.Shell")WshShell.Run ("C:\Progra~1\UltraISO\UltraISO.exe")WScript.Sleep 1000WshShell.SendKeys("{TAB}")WScript.Sleep 500WshShell.SendKeys(" ")WScript.Sleep 500WshShell.SendKeys("xxUSERNAMExx")WScript.Sleep 500WshShell.SendKeys("{TAB}")WScript.Sleep 500WshShell.SendKeys("xxSERIAL PT 1xx")WScript.Sleep 500WshShell.SendKeys("xxSERIAL PT 2xx")WScript.Sleep 500WshShell.SendKeys("xxSERIAL PT 3xx")WScript.Sleep 500WshShell.SendKeys("xxSERIAL PT 4xx")WScript.Sleep 500WshShell.SendKeys("{ENTER}")this worked for me after the reg import method failed
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