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 08-04-2013, 05:19
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
I'm not the one who is using it's the game's developers. ^^
Reply With Quote
Sponsored Links
  #2  
Old 08-04-2013, 05:21
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
rather leave it like this #define AppName "Clive Barkers Jericho"
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (08-04-2013)
  #3  
Old 08-04-2013, 05:24
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
rather leave it like this #define AppName "Clive Barkers Jericho"
Yeah, that what i did.
Reply With Quote
  #4  
Old 08-04-2013, 22:19
huavancuong098 huavancuong098 is offline
Registered User
 
Join Date: Mar 2013
Location: viet nam
Posts: 40
Thanks: 26
Thanked 5 Times in 5 Posts
huavancuong098 is on a distinguished road
comparison between the level of compression Inno Setup and use of the razor, the compress.bat file which will compress better. I need an answer on this issue. If you can help me do this right. Thank!
Reply With Quote
  #5  
Old 08-04-2013, 22:31
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
depends on the compression but .bat compression is the best
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
huavancuong098 (08-04-2013)
  #6  
Old 08-04-2013, 23:17
huavancuong098 huavancuong098 is offline
Registered User
 
Join Date: Mar 2013
Location: viet nam
Posts: 40
Thanks: 26
Thanked 5 Times in 5 Posts
huavancuong098 is on a distinguished road
but the use of such compress.bat no clear delineation of space between 4.3 GB DVD. How to properly define the size of each DVD? The use of arc free to use the Inno Setup command with a higher compression than compress.bat not?
Reply With Quote
  #7  
Old 09-04-2013, 10:11
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by huavancuong098 View Post
but the use of such compress.bat no clear delineation of space between 4.3 GB DVD. How to properly define the size of each DVD? The use of arc free to use the Inno Setup command with a higher compression than compress.bat not?
you try by any means necessary, compress files using a list to include or exclude the files
Reply With Quote
  #8  
Old 09-04-2013, 01:50
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
hi i need help

how to do this

Code:
#define AppName "1"
//values 1,2,3,4,5


[Setup]

AppId={{660BF654-1986-4653-9981-E99323A2E683}

#ifdef AppName "1"
AppVerName=y_thelastknight1
#endif
#ifdef AppName "2"
AppVerName=y_thelastknight2
#endif
#ifdef AppName "3"
AppVerName=y_thelastknight3
#endif
#ifdef AppName "4"
AppVerName=y_thelastknight4
#endif
#ifdef AppName "5"
AppVerName=y_thelastknight5
#endif


DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes



[Files]
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: {win}\help\*; DestDir: {app}\1; Flags: external recursesubdirs ;
Reply With Quote
  #9  
Old 09-04-2013, 03:11
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by y_thelastknight View Post
hi i need help

how to do this

Code:
#define AppName "1"
//values 1,2,3,4,5


[Setup]

AppId={{660BF654-1986-4653-9981-E99323A2E683}

#ifdef AppName "1"
AppVerName=y_thelastknight1
#endif
#ifdef AppName "2"
AppVerName=y_thelastknight2
#endif
#ifdef AppName "3"
AppVerName=y_thelastknight3
#endif
#ifdef AppName "4"
AppVerName=y_thelastknight4
#endif
#ifdef AppName "5"
AppVerName=y_thelastknight5
#endif


DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes



[Files]
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: {win}\help\*; DestDir: {app}\1; Flags: external recursesubdirs ;
Code:
#define AppName "1"
//values 1,2,3,4,5


[Setup]

AppId={{660BF654-1986-4653-9981-E99323A2E683}

#if AppName == 1
AppVerName=y_thelastknight1
#elif AppName == 2
AppVerName=y_thelastknight2
#elif AppName == 3
AppVerName=y_thelastknight3
#elif AppName == 4
AppVerName=y_thelastknight4
#elif AppName == 5
AppVerName=y_thelastknight5
#endif


DefaultDirName={pf}\{#MyAppName}
DefaultGroupName={#MyAppName}
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes



[Files]
Source: "C:\Program Files (x86)\Inno Setup 5\Examples\MyProg.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: {win}\help\*; DestDir: {app}\1; Flags: external recursesubdirs ;
Reply With Quote
The Following User Says Thank You to altef_4 For This Useful Post:
y_thelastknight (09-04-2013)
  #10  
Old 09-04-2013, 08:53
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
thanks for help altef_4

Last edited by y_thelastknight; 12-04-2013 at 06:37.
Reply With Quote
  #11  
Old 12-04-2013, 17:31
sakaboy sakaboy is offline
Registered User
 
Join Date: Mar 2013
Location: UK
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
sakaboy is on a distinguished road
How can I do to set my Installer can Run as Administrator?
Reply With Quote
  #12  
Old 12-04-2013, 17:45
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
start up inno then goto help & search for administrator.

[Setup]: PrivilegesRequired
Reply With Quote
  #13  
Old 13-04-2013, 01:25
TsubasaHP's Avatar
TsubasaHP TsubasaHP is offline
Registered User
 
Join Date: Jul 2012
Location: Iran
Posts: 31
Thanks: 9
Thanked 4 Times in 3 Posts
TsubasaHP is on a distinguished road
Hi, Guys . How Can I Create a silently Installer with inno setup that Include Two or Three or More disk?

I Create Installer, But when disk one is finished, silently Installer not asked for disk two and Progress bar roll Back and install canceled .

what can i do?

Sorry For my bad english
Reply With Quote
  #14  
Old 14-04-2013, 07:06
Compiler Compiler is offline
Registered User
 
Join Date: Aug 2012
Location: A Planet called Earth.
Posts: 38
Thanks: 10
Thanked 7 Times in 7 Posts
Compiler is on a distinguished road
I get this error


I use this code:
Code:
arc a -ep1 -ed -r -w.\ Data-01.bin -mprecomp:zl98:d0+srep+exe+delta+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\game\*"

pause
Reply With Quote
  #15  
Old 14-04-2013, 07:08
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
arc.ini
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 05:51
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



All times are GMT -7. The time now is 13:52.


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