View Full Version : Pro Evolution Soccer 2013 1xDVD5
InstallerScript CI 8.5.7.4 by yener90 compression lzma
1. Install the game
2. Download the attachment, extract completely (wherever you want)
3. Open InstallerScript.iss
Edit the following lines, according to the installation directory of the game.
#define SourcePath "C:\Program Files\KONAMI\Pro Evolution Soccer 2013"
4. Save and compile
5. Will create one folders, Disk folder inside the "compiled":
Move to the Disk:
Setup.exe
Setup-1a.bin
Setup-1b.bin
Setup-1c.bin
Burn the contents of the folder to a DVD with the label you want.
Total Size: 3.92 GB
mesut28, can u help me why "cannot access 64 BIT registry"
pakrat2k2
10-12-2012, 05:09
registry section has missing parameter ( INNO Help shows why )
Root key values with a suffix of 64 can only be used when Setup is running on 64-bit Windows, otherwise an error will occur. On an installation supporting both 32- and 64-bit architectures, it is possible to avoid the error by adding a Check: IsWin64 parameter, which will cause the entry to be silently skipped when running on 32-bit Windows.
so look to [registry] section of his script & add ;Check: IsWin64 to the end of those lines, will get rid of that error.
then save & recompile the script.
Try to do like this bi registry entries
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\Wow6432Node\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\Wow6432Node\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\Wow6432Node\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
pakrat2k2
11-12-2012, 11:58
sena87 NO like this: ( the Check: IsWin64 in the script will make it so that IF you ARE on X64 bit windows it will skip that line.
same as mesut28 posted with \Wow6432Node\ in the HKLM line)
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
ALSO having JUST HKLM is the SAME for BOTH X86 / X64 versions of windows, having X64 will just make entry goto \Wow6432Node\ portion of registry.
sena87 NO like this: ( the Check: IsWin64 in the script will make it so that IF you ARE on X64 bit windows it will skip that line.
same as mesut28 posted with \Wow6432Node\ in the HKLM line)
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
ALSO having JUST HKLM is the SAME for BOTH X86 / X64 versions of windows, having X64 will just make entry goto \Wow6432Node\ portion of registry.
THX pakrat2k2, yesterday i tried
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
just HKML64 in 3 line of the end,that i add,
setup is not problem, i can playing now in mw OS 32bit,
in your script ,u add all of the line with that script,
it will be a different in the future if i just adding 3 line in the bottom?
coz i haven't try on other OS,
:p
Mesut you can do the conversion to 2 dvds. thanks..
No compression use 2xDVD5 will
What pakrat2k2 tried to explain was that the SO handles automatically if the key goes to SOFTWARE or to SOFTWARE\Wow6432Node so basically the last 3 keys are NOT needed.
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Also, you should change the first "Valuedata" to YOUR key.
chuotchu001
18-01-2013, 20:11
[Registry]
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey;
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "code"; ValueType: String; Valuedata: V7TV-W3JX-6CC3-3DDU-Y3W7; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "installdir"; ValueType: String; ValueData: "{app}\"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Root: HKLM64; Subkey: "SOFTWARE\KONAMI\PES2013"; ValueName: "version"; ValueType: String; ValueData: "1.00.0000"; MinVersion: 0.0,5.0; Flags: uninsdeletekey; Check: IsWin64
Ok, I use this code and works fine -> tested on WinXP SP3 , Win7 x86, Win7 x64.
Thanks mesut28, pakrat2k2 and sena87 :)
steve_gerry
19-02-2016, 00:33
how to make setup.exe only?
i has compile this game ... and instal workly
but i accidently delete my setup.exe
and i wont recompile this game just make setup.exe
pls help me
sry for my bad eng
mausschieber
19-02-2016, 04:43
how to make setup.exe only?
i has compile this game ... and instal workly
but i accidently delete my setup.exe
and i wont recompile this game just make setup.exe
pls help me
sry for my bad eng
Download the attachment and start installerscript.iss
and set a semicolon here ;#define ProgramFiles "C:\Program Files\KONAMI\Pro Evolution Soccer 2013"
that should bring you your setup.exe back
steve_gerry
19-02-2016, 22:09
i have tried it
and still my setup.exe wont extract setup.bin
this is the result
pakrat2k2
20-02-2016, 07:48
i have tried it
and still my setup.exe wont extract setup.bin
this is the result
The problem is the setup.exe now expects external files, & you have setup-1a.bin files ( created from internal )
either re-do entire conversion, or edit the setup.ini so the setup.exe will extract from your already created files.
steve_gerry
21-02-2016, 03:26
i've changed setup.ini to this
and same setup.bin cant extract
what suppose to be?
im use inno setup not freearc
pakrat2k2
21-02-2016, 19:10
Correct extract settings ( you named them wrong according to your screenshot )
[ExtractSettings]
FreeArcFile1=Setup-1a.bin;DestDir:{app};Disk:1;
FreeArcFile2=Setup-1b.bin;DestDir:{app};Disk:1;
FreeArcFile3=Setup-1c.bin;DestDir:{app};Disk:1;
You've compiled Langscript.iss but I don't see an Autorun.exe, if you changed the InstallerScript.iss , put a semicolon here ;#define ProgramFiles "C:\Program Files\KONAMI\Pro Evolution Soccer 2013, then all that is needed is the corrections above to the Setup.ini & it should extract those files properly. If not then start over again, Install the game then re-do the conversion from the beginning.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.