FileForums

FileForums (https://fileforums.com/index.php)
-   PC Games - CD/DVD Conversions (https://fileforums.com/forumdisplay.php?f=39)
-   -   L.A. Noire 2DVD9 --> 3DVD5 [INNOSetup] (https://fileforums.com/showthread.php?t=92402)

DonHomerone 19-11-2011 14:54

L.A. Noire 2DVD9 --> 3DVD5 [INNOSetup]
 
This custom installer Works with any L.A.Noire installation and no matter what patches and stuff you add. The final size will change on what you add.

01- Download the attachment and extract it to any folder (This case D:\TEMP will be used)

02- Install the game

03- Apply any updates, DLCs, NO-CD Crack or whatever you want

04- Copy the "ISSetupPrerequisites" folder from disk 1 to your game installation folder

05- Delete the following files from copied "ISSetupPrerequisites" folder:
Code:

Microsoft .NET Framework 3.5 SP1.prq
Microsoft DirectX Redist (June 2010).prq
Microsoft Visual C++ 2008 SP1 Redistributable Package (x86).prq
Rockstar Games Social Club.prq

06- Rename the following folders (OLD NAME >>> New Name)
Code:

{074EE22F-2485-4FED-83D1-AAC36C3D9ED0} >>> dotnetfx35
{0BE9572E-8558-404f-B0A5-8C347D145655} >>> vcredist
{46066852-8450-4988-9E2F-47C7A8A84C7E} >>> Social Club

07- With INNO Setup installed, double click on L.A.Noire.iss
(Try to use latest version of ANSI Release to avoid problems)

08- Edit the first line and change the red part to your game installation path. BE SURE TO KEEP THE "\" OR IT WONT WORK!!
Code:

#define SourcePath "D:\Games\L.A.Noire\"
09- Hit the compile button and wait for a couple of hours (dependng on your system) to complete

- Images taken from google images
- Installer music from youtube
- Registry entries from kranmer
- And lots of tips and base work from pakrat2k2 posts

Screenshots!



NOTE: Screenshots are in spanish and without texts coz I like it that way, whole installer is multi language and texts are taken from your INNO Setup installation so you're done.

Optionally you can use Social Club v1.0.5.0 Setup.exe instead the one on the disk, but be sure to place it on the same folder and with the same name and you're all set


Version 1.0: First release (215 downloads)

Version 2.0:
- Fixed source path for LANoireEFIGS.ini file (Thnxs mroussev for pointing it out)
- Changed wizard background image to make UI a lil bit cleaner. (A small change that maybe you dont even notice)

Version 3.0:
- Fixed Autorun buttons when it's already installed. (Thnxs LeChuck2011 for reporting it)

Version 4.0:
- Fix for bad formed registry keys read. Sorry my bad.
- Test crap removed. Once again. sorry, my bad

Check pakrat2k2's post
http://fileforums.com/showpost.php?p...5&postcount=50

[Added by Joe Forster/STA]
Quote:

Originally Posted by zyo (Post 399238)
Root: HKLM; Subkey: "SOFTWARE\Rockstar Games"; ValueType: string; ValueName: "Installed Applications"; ValueData: "1"; Flags: uninsdeletekeyifempty

change value data to 0 or you wont be able to uninstall social club after unisntallation of the game.


pakrat2k2 19-11-2011 16:48

Nice job, tested on W7X64, havent come across any issues yet ;)

EDIT:

Did come across an issue where the source for the LANoireEFIGS.ini is located.

You have:
C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire\LANoireEFIGS.ini

where under W7X64 its located "{commonappdata}\Rockstar Games\L.A. Noire\LANoireEFIGS.ini " which means C:\ProgramData\Rockstar Games\L.A. Noire\LANoireEFIGS.ini.

mroussev 19-11-2011 17:11

There is a tiny error on code.This:

Quote:

C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire\LANoireEFIGS.ini
must be changed to this

Quote:

C:\Documents and Settings\All Users\Application Data\Rockstar Games\L.A. Noire\LANoireEFIGS.ini
otherwise it gives error that cant find .ini file.

DonHomerone 19-11-2011 17:36

Quote:

Originally Posted by mroussev (Post 398844)
There is a tiny error on code.This:



must be changed to this



otherwise it gives error that cant find .ini file.

Tested with a clean install from original disks on my laptop and the file goes on

Code:

C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire
just like it's on my script... maybe you should check it again...

DonHomerone 19-11-2011 17:52

I actually noticed one thing... both paths are the same... just entered to one of them made a new txt file then pasted the other path on the address bar and opened the other location with the same txt I've made previously, so one way or the other it's ok do your own tests and you'll see

pakrat2k2 19-11-2011 17:59

the line in the script under source:

Source:"C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire\LANoireEFIGS.ini"; DestDir: "{commonappdata}\Rockstar Games\L.A. Noire\"; Flags: IgnoreVersion;

The FRONT part is incorrect.. if it was Source:"{commonappdata}\Rockstar Games\L.A. Noire\LANoireEFIGS.ini";DestDir: "{commonappdata}\Rockstar Games\L.A. Noire\"; Flags: IgnoreVersion;

then it would be correct. I dont have a LANoireEFIGS.ini in C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire, under W7X64. But I DO have one under
C:\ProgramData\Rockstar Games\L.A. Noire.

DonHomerone 19-11-2011 18:36

Quote:

Originally Posted by pakrat2k2 (Post 398848)
the line in the script under source:

Source:"C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire\LANoireEFIGS.ini"; DestDir: "{commonappdata}\Rockstar Games\L.A. Noire\"; Flags: IgnoreVersion;

The FRONT part is incorrect.. if it was Source:"{commonappdata}\Rockstar Games\L.A. Noire\LANoireEFIGS.ini";DestDir: "{commonappdata}\Rockstar Games\L.A. Noire\"; Flags: IgnoreVersion;

then it would be correct. I dont have a LANoireEFIGS.ini in C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire, under W7X64. But I DO have one under
C:\ProgramData\Rockstar Games\L.A. Noire.

Well I have them both, and like I said on previous post, if I create a txt file on one path and have it on the other path too, but it's maybe my case.

Maybe has something to do with the fact I'm using the built-in Admin account which comes with the system. (Win7X64, btw) who knows...

But once again, both folders are the same in my case, I put one new file on one of them and I have the same file on the other one

quake4 19-11-2011 20:52

I think we except: Microsoft DirectX, Microsoft .NET Framework 3.5 SP1 => Fix 3xDVD5

DonHomerone 19-11-2011 21:09

Quote:

Originally Posted by quake4 (Post 398858)
I think we except: Microsoft DirectX, Microsoft .NET Framework 3.5 SP1 => Fix 3xDVD5

Well... in my case I have included the 1.0.2396 update + a couple of DLCs so, I don't care about going up to 4DVD5 lol

pakrat2k2 19-11-2011 22:48

DO NOT extract the attatchment into your gamefolder EVER. Just make a new folder on your HD where you have lots of room. ( The poster said he used d:\TEMP )
To extract the file you will need 7-zip ( 7z extension )

then follow the rest of the instructions. :)

phill05 19-11-2011 23:43

Why the Tiger.cjsytles file is installed to game dir?

mroussev 20-11-2011 00:17

Quote:

Originally Posted by DonHomerone (Post 398845)
Tested with a clean install from original disks on my laptop and the file goes on

Code:

C:\Documents and Settings\All Users\Rockstar Games\L.A. Noire
just like it's on my script... maybe you should check it again...

I check it and on my pc is under \All Users\Application Data\Rockstar Games\ .But i use XP,maybe on win7 it is in \All Users\Rockstar Games\.After fixing the script like i said conversion continue normal.

DonHomerone 20-11-2011 05:06

Updated script, read changelog... no big changes if it worked for you before

igivk 20-11-2011 10:02

Do i need to copy "ISSetupPrerequisites" folder to installed game directory or to "Compiled\Disk1" folder? Please help !

pakrat2k2 20-11-2011 10:07

Copy the "ISSetupPrerequisites" folder from disk 1 to your game installation folder, after you've renamed them like the instructions say ;)

houdaifas 20-11-2011 10:44

I HAVE THIS MESSAGE
AND I HAVE THE VERSION INNO SETUP 5.4.2

http://img805.imageshack.us/img805/8...2011184545.png

And THIS MESSAGE

http://img843.imageshack.us/img843/5...2011184734.png

I get the source of my game

G:\Rockstar Games\L.A. Noire

AND THE ISSetupPrerequisites

THE GAME IS WORKING

BAT THE CONVERSION I HAVE ERROR

I HAVE WINDOWS 7 X64

PLS HELP


pakrat2k2 20-11-2011 10:49

Quote:

Originally Posted by houdaifas (Post 398914)
I HAVE THIS MESSAGE
AND I HAVE THE VERSION INNO SETUP 5.4.2

http://img805.imageshack.us/img805/8...2011184545.png


dunno for sure but the icon file is named Icon.ico NOT icon.ico, try correcting that and recompile, see if it goes past that ??

eddy8080 20-11-2011 11:27

Is it even possible that I get this after conversion? :

http://img526.imageshack.us/img526/8...1120202412.png

Don't really want to put the last 53MB file on the 4th DVD :S

pakrat2k2 20-11-2011 11:31

Quote:

Originally Posted by houdaifas (Post 398914)
I HAVE THIS MESSAGE
AND I HAVE THE VERSION INNO SETUP 5.4.2

http://img805.imageshack.us/img805/8...2011184545.png

And THIS MESSAGE

http://img843.imageshack.us/img843/5...2011184734.png

I get the source of my game

G:\Rockstar Games\L.A. Noire

AND THE ISSetupPrerequisites

THE GAME IS WORKING

BAT THE CONVERSION I HAVE ERROR

I HAVE WINDOWS 7 X64

PLS HELP


the second image shows that you have a *" where you should actually have in line 1 of the script.

#define SourcePath "G:\Rockstar Games\L.A. Noire\"

NOTICE THE \" it MUST BE THERE !! or you'll end up with error just like screenshot #2.

houdaifas 20-11-2011 11:49

Ok IS GOOD NOW
I MISS "\"
:s THANKS pakrat2k2
:)

TippeX 20-11-2011 12:21

heh such truth in that statement

esp when i do some c code with paths and forget \ should be \\ etc... spend some time debugging and then you see it

mroussev 20-11-2011 14:35

Quote:

Originally Posted by eddy8080 (Post 398921)
Is it even possible that I get this after conversion? :

http://img526.imageshack.us/img526/8...1120202412.png

Don't really want to put the last 53MB file on the 4th DVD :S

Then put it in the 3rd DVD,it will fit.

Fabioddq 20-11-2011 15:33

Works perfectly.
Tested in Win7 64Bits.
Thanks for the conversion!

LeChuck2011 21-11-2011 13:38

Important bug.
If by chance you have installed a repack of the need for speed the run, the autorun does not work until you uninstall.
I've been checking the. Iss autorun and I see many fields for the nfs the run and not to the noire.
Greetings.
Pardon my English, translated.

DonHomerone 21-11-2011 14:10

Quote:

Originally Posted by LeChuck2011 (Post 398985)
Important bug.
If by chance you have installed a repack of the need for speed the run, the autorun does not work until you uninstall.
I've been checking the. Iss autorun and I see many fields for the nfs the run and not to the noire.
Greetings.
Pardon my English, translated.

Yeah I noticed that, seems like I mixed files badly... I was working on a fix for that at home but time came up and had to head to work again so had to stop working on it for the moment... will take a look at that when I get home...

gamezonex 22-11-2011 20:17

Disk 1 is over size..:(
 
Quote:

04- Copy the "ISSetupPrerequisites" folder from disk 1 to your game installation folder
the size of "Disk 1" 4,65GB..:confused:

not enough space to dvd5.

termic 22-11-2011 20:29

Quote:

Originally Posted by gamezonex (Post 399038)
the size of "Disk 1" 4,65GB..:confused:

not enough space to dvd5.

Copy the "ISSetupPrerequisites" folder from disk 1 to your game installation folder

gamezonex 22-11-2011 20:37

Quote:

Originally Posted by termic (Post 399041)
Copy the "ISSetupPrerequisites" folder from disk 1 to your game installation folder

All of "ISSetupPrerequisites" or just Social Club, vcredist and dotnetfx35 ? DirectX9 Juny 2010?

Robinson 22-11-2011 21:41

v4 it's Error

click Retry , it's continue

Fix v4 Plz

http://nf0.upanh.com/b1.s12.d4/2e52f...7830.error.jpg

1TRForce 23-11-2011 01:30

Setup-4a.bin??? 4 DVD???

silviugut 23-11-2011 08:24

The conversion works perfectly for me on win 7x32 bits, but I had a little problem, after i converted and i installed the game in my system, the game did not create a desktop shortcut LANoire exe. , created shortcut LANLauncher exe. and if you run the LANLauncher exe.it says it can not find the LANoire exe.! After I deleted the shortcut created by installing the game and created my shortcut of LANoire exe. game worked perfectly! I did something wrong or has someone the same problem as me! Anyway you did a good job!

d00m3d 23-11-2011 09:07

Same problem. LANLauncher complains it can't find the exe. But running the exe directly launches the game.

I think there's some registry entry missing, which is the reason the launcher can't find the game's exe..

pakrat2k2 23-11-2011 18:30

easy fix change the ISS script for desktop shortcut to LANoire.exe instead of LANLauncher.exe

haazmaaz 23-11-2011 23:33

Quote:

Originally Posted by d00m3d (Post 399061)
Same problem. LANLauncher complains it can't find the exe. But running the exe directly launches the game.

I think there's some registry entry missing, which is the reason the launcher can't find the game's exe..

cuz registry missing

DonHomerone 24-11-2011 07:40

Quote:

Originally Posted by silviugut (Post 399058)
The conversion works perfectly for me on win 7x32 bits, but I had a little problem, after i converted and i installed the game in my system, the game did not create a desktop shortcut LANoire exe. , created shortcut LANLauncher exe. and if you run the LANLauncher exe.it says it can not find the LANoire exe.! After I deleted the shortcut created by installing the game and created my shortcut of LANoire exe. game worked perfectly! I did something wrong or has someone the same problem as me! Anyway you did a good job!

Well that's pretty weird. since I used the 4.0 version to make my conversion and had no problems with it, maybe something you changed? LANLauncher is the one used by original game to load the game since it lets you config a couple of things, including language but the game can be directly launched from LAnoire.exe too but no config options...

javieracdc 24-11-2011 19:24

Hey what about the DLC??
because if you install the all DLC it is around 1.5Gb plus....Then it would be 4dvd5

How can i make these conversion adding more files?

pakrat2k2 24-11-2011 19:34

just follow th same steps.. it uses your installed game files, doesnt care whats there or not. The additional 1.5GB for the DLC, will just increase the number of disks it will take when finished.

DonHomerone 24-11-2011 19:57

and if you go for 4DVD5 for including DLCs like I did, you should think about changing the compression line from

Code:

Compression=LZMA2/Ultra
to
Code:

Compression=zip/1
Will increase the final size a lil bit 50-100MB but whole conversion process and the installer itself will be a lot faster

persiastore 26-11-2011 03:18

How can I convert to 4 disk without changing its original Setup ?

pakrat2k2 26-11-2011 10:49

you cant because it uses installshield & they've packed it a certain way, and it cant be changed.


All times are GMT -7. The time now is 01:29.

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