FileForums

FileForums (https://fileforums.com/index.php)
-   PC Games - CD/DVD Conversions (https://fileforums.com/forumdisplay.php?f=39)
-   -   Pro Evolution Soccer 2013 1xDVD5 (https://fileforums.com/showthread.php?t=93607)

mesut28 27-10-2012 21:38

Pro Evolution Soccer 2013 1xDVD5
 
7 Attachment(s)
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.


Code:

#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:

Code:

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

sena87 09-12-2012 21:31

2 Attachment(s)
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 )

Code:

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.

sena87 10-12-2012 20:40

1 Attachment(s)
like this?

mesut28 11-12-2012 07:59

Try to do like this bi registry entries

Code:

[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)

Code:


[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 11-12-2012 18:47

Quote:

Originally Posted by pakrat2k2 (Post 411844)
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)

Code:


[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

Code:


[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

41UC4RD 12-12-2012 11:16

Mesut you can do the conversion to 2 dvds. thanks..

mesut28 12-12-2012 14:26

No compression use 2xDVD5 will

NTurky 29-12-2012 13:49

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.

Code:

[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

Quote:

Originally Posted by sena87 (Post 411861)

Code:


[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

Quote:

Originally Posted by steve_gerry (Post 447297)
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

3 Attachment(s)
i have tried it
and still my setup.exe wont extract setup.bin

this is the result

pakrat2k2 20-02-2016 07:48

Quote:

Originally Posted by steve_gerry (Post 447360)
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.


All times are GMT -7. The time now is 10:34.

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