Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-04-2016, 17:39
remixfrance remixfrance is offline
Registered User
 
Join Date: Apr 2013
Location: France
Posts: 14
Thanks: 4
Thanked 3 Times in 3 Posts
remixfrance is on a distinguished road
Help Me Please with CIU 2.030

Hello,
I have tested the script by Yener but I don't know why it don't work.
I use Inno Setup 5.5.1 Enhanced Edition (Unicode)




When I click on "setup.exe" file I wait long time and nothing.
I have tested "Graphic_Studio" before and the results are good but now I want compile the script.

What should I do ?
Reply With Quote
Sponsored Links
  #2  
Old 07-04-2016, 03:32
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,316
Thanks: 6,758
Thanked 11,707 Times in 3,227 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by remixfrance View Post
Hello,
I have tested the script by Yener but I don't know why it don't work.
I use Inno Setup 5.5.1 Enhanced Edition (Unicode)




When I click on "setup.exe" file I wait long time and nothing.
I have tested "Graphic_Studio" before and the results are good but now I want compile the script.

What should I do ?
it should look like this

;INSTALLSCRIPT BY YENER90
;ULTRAARC BY RAZOR12911
;#define ProgramFiles "E:\Program Files (x86)\THQ\Darksiders II"
; The following components are only the folder names. -> for defining Name + Size of the components, insert it to Setup.ini
#define Component1 "Baldurs Gate - Enhanced Edition"
#define Component2 "Baldurs Gate II Enhanced Edition"
;#define Component3 "Half-Life 2 Deathmatch"
;#define Component4 "Deponia Doomsday"
Reply With Quote
  #3  
Old 07-04-2016, 07:24
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,687
Thanks: 1,106
Thanked 7,333 Times in 2,836 Posts
KaktoR is on a distinguished road
Quote:
Originally Posted by remixfrance View Post
Hello,
I have tested the script by Yener but I don't know why it don't work.
I use Inno Setup 5.5.1 Enhanced Edition (Unicode)




When I click on "setup.exe" file I wait long time and nothing.
I have tested "Graphic_Studio" before and the results are good but now I want compile the script.

What should I do ?
What size is Setup.exe? If using internal compression, then enable disk spanning. Or use freearc instead?
__________________
Haters gonna hate
Reply With Quote
  #4  
Old 07-04-2016, 12:00
remixfrance remixfrance is offline
Registered User
 
Join Date: Apr 2013
Location: France
Posts: 14
Thanks: 4
Thanked 3 Times in 3 Posts
remixfrance is on a distinguished road
Thanks for replies.

@mausschieber : I have this except to ProgramFiles
@KaktoR : Setup Size : 4.86 Go and Disk spanning is enable.

Maybe it's necessary to add these lines ? :

Quote:
Compression=lzma2/Ultra64
InternalCompressLevel=Ultra64
I don't use freearc because I don't know how I can use it.

Last edited by remixfrance; 07-04-2016 at 12:10.
Reply With Quote
  #5  
Old 07-04-2016, 12:11
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,687
Thanks: 1,106
Thanked 7,333 Times in 2,836 Posts
KaktoR is on a distinguished road
Then it doesnt surprise me if Setup.exe not starts.

Add DiskSliceSize and SlicesPerDisk right under DiskSpanning.

For DiskSliceSize choose the size of bin files (in bytes), for SlicesPerDisk the amount of bin files.

eg for DVD5 DiskSliceSize=1163919360 and SlicesPerDisk=4
__________________
Haters gonna hate

Last edited by KaktoR; 07-04-2016 at 12:23.
Reply With Quote
  #6  
Old 08-04-2016, 10:19
remixfrance remixfrance is offline
Registered User
 
Join Date: Apr 2013
Location: France
Posts: 14
Thanks: 4
Thanked 3 Times in 3 Posts
remixfrance is on a distinguished road
Same problem

Quote:
;INSTALLSCRIPT BY YENER90
;ULTRAARC BY RAZOR12911
#define ProgramFiles "D:\Program Files (x86)\THQ"
; The following components are only the folder names. -> for defining Name + Size of the components, insert it to Setup.ini
;#define Component1 "Mass Effect"
;#define Component2 "Mass Effect 2"
;#define Component3 "Mass Effect 3"
;#define Component4 "Component4"
;#define Component5 "Component5"
;#define Component6 "Component6"
;#define Component7 "Component7"
;#define Component8 "Component8"
;#define x64
#define Internal

[Setup]
AppName={code:GetAppName}
AppVerName={code:GetAppName}
DefaultDirName={pf}\{code:GetAppPublisher}\{code:G etAppName}
DefaultGroupName={code:GetAppPublisher}\{code:GetA ppName}
VersionInfoDescription=yener90 Installer
VersionInfoCopyright=yener90
VersionInfoProductName=yener90 Installer
VersionInfoCompany=yener90 dvd9todvd5.com
DirExistsWarning=no
DisableReadyPage=true
OutputDir=.\Output
Compression=none
DisableStartupPrompt=true
DisableProgramGroupPage=yes
#ifexist "Icon.ico"
SetupIconFile=Icon.ico
#else
SetupIconFile=Setup.ico
#endif
UsePreviousLanguage=No
#define ScriptVersion "2.0.3.0"
VersionInfoVersion={#ScriptVersion}
VersionInfoTextVersion={#ScriptVersion}
VersionInfoProductVersion={#ScriptVersion}
OutputBaseFilename=Setup
WindowShowCaption=false
WindowResizable=false
BackColor=clBlack
Uninstallable=no
ChangesEnvironment=true
ChangesAssociations=true
ShowLanguageDialog=no
UninstallDisplayIcon={app}\{code:GetMyAppExePath}\ {code:GetMyAppExeName}
#ifdef x64
ArchitecturesInstallIn64BitMode=x64
ArchitecturesAllowed=x64
#endif
#ifdef ProgramFiles
DiskSpanning=true
DiskSliceSize=1163919360
SlicesPerDisk=4
SolidCompression=true
#endif
;#define KeyWriter
;#define OperationAfterInstall
;#define CustomGDFBinary
;#define CustomGDFBinary2
#ifexist "Icon.ico"
#define CustomBinaryIcon "Icon.ico"
#endif
Reply With Quote
  #7  
Old 08-04-2016, 13:15
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,687
Thanks: 1,106
Thanked 7,333 Times in 2,836 Posts
KaktoR is on a distinguished road
Which OS you are using?

Have tested and for me it doesnt work as well. Windows Taskmanager show me HDD 106mb/s... So Setup.exe is very busy with something (i guess same story as with cab extension).



edit: Disable SolidCompression. This method worked for me.
__________________
Haters gonna hate
Reply With Quote
  #8  
Old 08-04-2016, 21:15
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
set Compression=lzma2/ultra64 will help greatly in reducing the size/speed of created setup.exe. doesn't matter if in 86/64 bit OS, it helps.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -7. The time now is 07:42.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com