View Full Version : repack problem with 2 games in different folders :(
Ivanlakersss2016
24-09-2024, 06:16
I have a problem, I want to create a repack with inno setup with 2 games, each in its corresponding folder, but I put all the files together in one folder and I am a little frustrated and I would like to learn how to do it, I use the inno setup application 5.5.1 ee2 and it doesn't work for me, can someone explain to me with a tutorial or video tutorial how it can be done? Thank you!
You could use components
https://jrsoftware.org/is6help/index.php?topic=componentssection
[Files]
Source: "C:\GAMES\Game1\*"; DestDir: "{app}\Game1"; Components: Game1; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "C:\GAMES\Game2\*"; DestDir: "{app}\Game2"; Components: Game2; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{group}\Game1"; Filename: "{app}\Game1\Game1.exe"; Components: Game1; Tasks: startmenu
Name: "{group}\Game2"; Filename: "{app}\Game1\Game2.exe"; Components: Game2; Tasks: startmenu
Name: "{commondesktop}\Game1"; Filename: "{app}\Game1\Game1.exe"; Components: Game1; Tasks: desktopicon
Name: "{commondesktop}\Game2"; Filename: "{app}\Game2\Game2.exe"; Components: Game2; Tasks: desktopicon
[Components]
Name: Game1; Description: Game 1; ExtraDiskSpaceRequired: <in bytes>; Types: full compact
Name: Game1; Description: Game 2; ExtraDiskSpaceRequired: <in bytes>; Types: full
Ivanlakersss2016
24-09-2024, 11:45
Do you know of any video tutorial that shows how to create several desktop folders for 2 games in the same installation folder?
I have a problem, I want to create a repack with inno setup with 2 games, each in its corresponding folder, but I put all the files together in one folder and I am a little frustrated and I would like to learn how to do it, I use the inno setup application 5.5.1 ee2 and it doesn't work for me, can someone explain to me with a tutorial or video tutorial how it can be done? Thank you!
you can't put all the games in the same folder as one game, but
in the main folder ex (games) you can insert all the games you want, inside games folders will be created each for its own game
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.