secretdream Posted February 18, 2008 Posted February 18, 2008 (edited) is there anyone who can help me to make convert x dvd 2.99 silent?i use /SP- /SILENT /VERYSILENT /SUPPRESSMSGBOXESthese parametres but they don't work. setup always asks me to select a video format.but,of course i couldn't select anything and it stops.i made /loadinf but it didn't work too...please help me Edited February 18, 2008 by secretdream
ajua Posted February 19, 2008 Posted February 19, 2008 have you tried to use Universal Extractor to extract the setup files? this is helpful to see the script file and to change it to your needs. maybe you can choose the video format via the script or remove it at all from there.i haven't tried convertcxtodvd in silent install but i have made a custom installer for CopytoDVD in msi format.
radix Posted February 19, 2008 Posted February 19, 2008 (edited) HiYou need to repack this installer to make it completly silent.Download these tools:innounpInno Setup- Install Inno Setup.- Unrar innounp and copy it in the same folder with VSO installer.Now unpack installer using a command like this:C:\test020\innounp.exe -x -m -a C:\test020\vsoConvertXtoDVD3_setup.exeOpen install_script.iss and make this steps:- Add a name for the output file on OutputBaseFilename (on top of the script), but without extension- Delete the entire line which contains "GetVideoStandard" from [Registry]- Delete those two lines under [Run] section- From [icons] I deleted the third line (quicklaunch icon)- From [Tasks] I removed the last two linesSave it and exit.Compile install_script.iss (r. click->Compile). New installer is in Output folder.Add these entries to a reg file (save it as settings.reg):Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\VSO\ConvertXtoDVD\3.0]"LicenseKey"="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-X"[HKEY_CURRENT_USER\Software\VSO\ConvertXtoDVD\3.0\settings]"Gen_BypassPromptForUpdateDialog"="FALSE""Gen_CheckForUpdate"="FALSE"Run from batch file:@echo offstart /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestartstart /wait regedit.exe /s settings.regexitNote: You can add informations from settings.reg into install_script.iss on [Registry] section. Edited February 19, 2008 by radix
skavenger Posted February 22, 2008 Posted February 22, 2008 Thank you for this nice info.I followed all your steps an now its working.For Registration i extend the ISS-Script with the following 3 lines unter section [registry].Root: HKCU; Subkey: "Software\VSO\ConvertXtoDVD\Settings"; Valuename: "Gen_BypassPromptForUpdateDialog"; ValueType: String; ValueData: "FALSE"; Flags: createvalueifdoesntexistRoot: HKCU; Subkey: "Software\VSO\ConvertXtoDVD\Settings"; Valuename: "Gen_CheckForUpdate"; ValueType: String; ValueData: "FALSE"; Flags: createvalueifdoesntexistRoot: HKCU; Subkey: "Software\VSO\ConvertXtoDVD"; Valuename: "LicenseKey"; ValueType: String; ValueData: "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-X"; Flags: createvalueifdoesntexistAfter silent Install i have a program-group named (Default) and inside are the links to ConvertX2DVD.How can i define the real name of this program-group in the script?TIASkAvEnGeR
radix Posted February 22, 2008 Posted February 22, 2008 (edited) After silent Install i have a program-group named (Default) and inside are the links to ConvertX2DVD.How can i define the real name of this program-group in the script?I don't know how.Use this batch file for that job :@echo offstart /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestartstart /wait regedit.exe /s settings.regmkdir "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3"copy "%allusersprofile%\Start Menu\Programs\(Default)\ConvertXToDVD 3.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\ConvertXToDVD 3.lnk"copy "%allusersprofile%\Start Menu\Programs\(Default)\Uninstall ConvertXToDVD.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\Uninstall ConvertXToDVD.lnk"rmdir /s /q "%allusersprofile%\Start Menu\Programs\(Default)"exitor this (without Settings.reg):@echo offstart /wait vsoConvertXtoDVD3_setup.exe /sp- /verysilent /norestartmkdir "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3"copy "%allusersprofile%\Start Menu\Programs\(Default)\ConvertXToDVD 3.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\ConvertXToDVD 3.lnk"copy "%allusersprofile%\Start Menu\Programs\(Default)\Uninstall ConvertXToDVD.lnk" "%allusersprofile%\Start Menu\Programs\VSO\ConvertXtoDVD 3\Uninstall ConvertXToDVD.lnk"rmdir /s /q "%allusersprofile%\Start Menu\Programs\(Default)"exit Edited February 22, 2008 by radix
benners Posted February 22, 2008 Posted February 22, 2008 After silent Install i have a program-group named (Default) and inside are the links to ConvertX2DVD.How can i define the real name of this program-group in the script?TIASkAvEnGeRIf you can edit the script then you can manually add the program group name. I use ISTool and you can go to the program group tab under options and type it in, manually you could add the code below to the [setup] portionDefaultGroupName=ConvertX2DVD
cool400 Posted May 11, 2008 Posted May 11, 2008 @radix,skavenger,bennersThanks a lot - this is really great!!!I tried this with ConvertXtoDVD 3.0.0.9 and it seems to work. The only thing I had to figure out was, how I could unpack the new Inno-Installer 5.2.3 - you need a modified version of innounp, which you can find here (there's an english GUI included, the tool speaks chinese )But I've got one last question: after I compiled the new setup, the installer has grown over 2MB without adding any files Are there any parameters I can choose for a greater file-compression?Best regards and thanks a lotcool400
benners Posted May 11, 2008 Posted May 11, 2008 Are there any parameters I can choose for a greater file-compression?Using ISTool Options - Compiler there are settings there for compression.I normally useCompression=lzmaInternalCompressLevel=ultraSolidCompression=true
radix Posted May 11, 2008 Posted May 11, 2008 (edited) I normally useCompression=lzmaInternalCompressLevel=ultraSolidCompression=trueOr Compression=lzma/ultra64SolidCompression=yesin [setup] section of .iss file and use Inno to compile. Edited May 11, 2008 by radix
benners Posted May 11, 2008 Posted May 11, 2008 I normally useCompression=lzmaInternalCompressLevel=ultraSolidCompression=trueOr Compression=lzma/ultra64SolidCompression=yesin [setup] section of .iss file and use Inno to compile.I tried the Ultra64 but got an "Out of memory" msg when compiling with ISTool, never bothered looking into the prob just reset to previous values. I have 2GB of mem so it should be enough
radix Posted May 11, 2008 Posted May 11, 2008 (edited) I tried the Ultra64 but got an "Out of memory" msg when compiling with ISTool, never bothered looking into the prob just reset to previous values. I have 2GB of mem so it should be enoughI used Inno not ISTool and works fine with ConvertXtoDVD. I have 2GB RAM too. Compilation need about 200-300 MB of memory in our case. Edited May 11, 2008 by radix
afterdark Posted May 12, 2008 Posted May 12, 2008 Thanks for all the info so far guys.I'm working on 3.0.0.9 same as cool400 but cant get the modded innounp as the above link seems to be broken or the host site down.Any chance of another link or mirror please ?Many thanksAD
cool400 Posted May 12, 2008 Posted May 12, 2008 My above link seems to be okay - on the linked website you will find these download-links for the modded innounp:http://uploaded.to/?id=lhjzbwhttp://cid-779005b3a75ddabf.skydrive.live....8-03-18%7C6.rarhttp://www.usaupload.net/d/fzr797nzj4tFor me it works like a charm Best regards and good luckcool400
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