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 23-12-2015, 10:43
Brian Do Brian Do is offline
Registered User
 
Join Date: Jan 2015
Location: London
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Brian Do is on a distinguished road
[Question]/[Help] What Installer is best option

Hello every one, first to say hello to every one second i have a question

i have a game Client folder already extract to my HDD which about 4GB
- Is there anyway i can create a installer with only one .EXE file (Setup.exe) no extra file like *.bin next to .exe
- If yes please tell me which one is good if possible please tutorials Link

Thank every one

Merry X-Mas and Happy new year
Reply With Quote
Sponsored Links
  #2  
Old 23-12-2015, 13:30
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
internal compression


Code:
#define YourAppName "YourProgram"
#define YourAppPublisher "YourCompany."
#define YourAppExeName "YourProg.exe"

[Setup]
AppId={{3EC868E8-876A-4658-A9B4-291FA4551A52}
AppName={#YourAppName}
AppVerName={#YourAppName}
AppPublisher={#YourAppPublisher}
DefaultDirName={pf}\{#YourAppName}
DefaultGroupName={#YourAppName}
DisableProgramGroupPage=yes
OutputBaseFilename=Your_Setup
InternalCompressLevel=Ultra64
OutputDir=.
Compression=lzma

[Languages]
Name: "english"; MessagesFile: "compiler:Languages\English.isl"

[Files]
Source: "YourFolder\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs

[Icons]
Name: "{commondesktop}\{#YourAppName}"; Filename: "{app}\{#YourAppExeName}";

[UninstallDelete]
Type: filesandordirs; Name: {app}
__________________
if you understand read more

Last edited by rinaldo; 24-12-2015 at 01:09.
Reply With Quote
  #3  
Old 23-12-2015, 17:45
gozarck's Avatar
gozarck gozarck is offline
Registered User
 
Join Date: Nov 2013
Location: Argentina
Posts: 163
Thanks: 254
Thanked 495 Times in 114 Posts
gozarck is on a distinguished road
Quote:
Originally Posted by rinaldo View Post
internal compression


Code:
#define YourAppName "YourProgram"
#define YourAppPublisher "YourCompany."
#define YourAppExeName "YourProg.exe"

[Setup]
AppId={{3EC868E8-876A-4658-A9B4-291FA4551A52}
AppName={#YourAppName}
AppVerName={#YourAppName}
AppPublisher={#YourAppPublisher}
DefaultDirName={pf}\{#YourAppName}
DefaultGroupName={#YourAppName}
DisableProgramGroupPage=yes
OutputBaseFilename=Your_Setup
OutputDir=.
Compression=lzma
SolidCompression=yes

[Languages]
Name: "english"; MessagesFile: "compiler:Languages\English.isl"

[Files]
Source: "YourFolder\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs

[Icons]
Name: "{commondesktop}\{#YourAppName}"; Filename: "{app}\{#YourAppExeName}";

[UninstallDelete]
Type: filesandordirs; Name: {app}
like rinaldo said and also you can get better compression with SolidCompression=yes
__________________
-the science of the useless-
Reply With Quote
  #4  
Old 24-12-2015, 01:07
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
If yes, solid compression will be enabled. This causes all files to be compressed at once instead of separately. This can result a much greater overall compression ratio if your installation contains many files with common content, such as text files, especially if such common content files are grouped together within the [Files] section.

The disadvantage to using solid compression is that because all files are compressed into a single compressed stream, Setup can no longer randomly access the files. This can decrease performance. If a certain file isn't going to be extracted on the user's system, it has to decompress the data for that file anyway (into memory) before it can decompress the next file. And if, for example, there was an error while extracting a particular file and the user clicks Retry, it can't just seek to the beginning of that file's compressed data; since all files are stored in one stream, it has seek to the very beginning. If disk spanning was enabled, the user would have to re-insert disk 1.

Thus, it is not recommended that solid compression be enabled on huge installs (say, over 100 MB) or on disk-spanned installs. It is primarily designed to save download time on smaller installs distributed over the Internet.


inno setup help
__________________
if you understand read more

Last edited by rinaldo; 24-12-2015 at 01:12.
Reply With Quote
The Following 3 Users Say Thank You to rinaldo For This Useful Post:
gozarck (24-12-2015), RamiroCruzo (24-12-2015), Razor12911 (03-01-2016)
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
Conversion Designer/Installer Creator Razor12911 Conversion Tutorials 1613 03-10-2024 01:24
altef_4's installer altef_4 Conversion Tutorials 244 24-05-2024 22:20
Game Installer Designer by altef_4 altef_4 Conversion Tutorials 236 28-05-2021 02:54
Tutorial using CI 8.0.0 yener90 Conversion Tutorials 424 21-10-2014 09:49



All times are GMT -7. The time now is 09:40.


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