Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 03-03-2009, 13:39
mondragon mondragon is offline
Registered User
 
Join Date: Mar 2005
Location: pl
Posts: 373
Thanks: 0
Thanked 16 Times in 11 Posts
mondragon is on a distinguished road
NecroVisioN [MULTI4] DVD9 to DVD5 [ONE LANG]
FreeArc + inno
rather more Proper than method by peterf1999

MESS WITH CABS
1) copy dvd9 to temp folder.
2) download attached archive and unpack to temp folder.[use v2 version]
3) Run: [only one bat file at the same time]
01_layout.bat [unblock cabs]
02_extract.bat [extract needed files]
03_move_files.bat [move needed files to safe place]
04_add_and_replace.bat [create fake files, and update cabs]
05_CLEAN.bat [:P]
4) move from temp\compress\ folder DirectX to temp folder

MESS WITH FREEARC AND COMPRESSING
1) install freearc, go to temp\compress
select all files except that files that u dont want to install [screenshot show english only installation]
3) select add and check both screenshot to know how to set freearc

[all files compress separately -2nd screenshot]
4) all compressed files move to temp\inno [create inno if not created already]
5) final temp folder for eng



additional steps - stolen from peterf1999 :P
Quote:
8- Edit setup.ini under [Languages] label:

from

[Languages]
Default=0x0009
count=4
key0=0x0009
key1=0x040c
key2=0x0010
key3=0x000a

to (for English)

[Languages]
Default=0x0009
count=1
key0=0x0009

to (for French)

[Languages]
Default=0x040c
count=1
key0=0x040c

to (for Italian)

[Languages]
Default=0x0010
count=1
key0=0x0010

to (for Spanish)

[Languages]
Default=0x000a
count=1
key0=0x000a
NOTE:
inno installer handle these name of files to unpack [must be in inno folder]
Code:
maps.pak.exe
models.pak.exe
sounds.pak.exe
textures.pak.exe
textures1.pak.exe
voiceovers_english.pak.exe
other languages and folders maps [folder maps isnt removed from cabs - need to do that manually if someone wants to compress it]
Code:
voiceovers_italian.pak.exe
voiceovers_spanish.pak.exe
voiceovers_french.pak.exe
maps.exe
uninstaller work flawless

not tested too many times - only from temp folder
Attached Files
File Type: rar conversion_dvd5_full.rar (1,009.5 KB, 119 views)
File Type: rar conversion_dvd5_full_v2.rar (1,010.1 KB, 232 views)

Last edited by mondragon; 04-03-2009 at 03:06.
Reply With Quote
Sponsored Links
  #17  
Old 04-03-2009, 01:03
jamd
Guest
 
Posts: n/a
So far best version from a dvd drive ( virtual or physical) is using peterf1999's version with :
1)delete install.ini & install.exe
2)rename IS.exe to Install.exe
3)edit autorun.inf :


Code:
[autorun]
OPEN=Install.exe
ICON=install.exe,0
LABEL=NecroVisioN

However, this launches both the modified setup and the official Necrovision setup at the same time using xp pro sp3.
To get it to work you need to click and run the official installer first - then the modified one to unpack the arc file.
Installing from hard disc with "original" install.exe this doesn't happen - It installs all parts automatically.
Getting close so there must be a simple solution around the corner.
Reply With Quote
  #18  
Old 04-03-2009, 01:07
mondragon mondragon is offline
Registered User
 
Join Date: Mar 2005
Location: pl
Posts: 373
Thanks: 0
Thanked 16 Times in 11 Posts
mondragon is on a distinguished road
@jamd
checked last peterf1999 post for fix ?

im working on mine fix
now it ready almost in first version
but probably change it to other version

ofcourse i post it from a while to test because dont have acces to game and other than xp sp2

edit
if u already create conversion try to use attached fix
Attached Files
File Type: rar necrovision_only_fix.rar (716.0 KB, 92 views)

Last edited by mondragon; 04-03-2009 at 03:09.
Reply With Quote
  #19  
Old 06-03-2009, 01:05
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Now Inno and original windows setup are not displayed at same time.
I have made some cosmetic changes to Inno setup, one click is needed to complete installation.

Last edited by peterf1999; 10-03-2009 at 12:24.
Reply With Quote
  #20  
Old 10-03-2009, 12:23
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
My proper conversion

Here

Last edited by peterf1999; 11-03-2009 at 08:32.
Reply With Quote
  #21  
Old 11-03-2009, 01:41
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Quote:
Originally Posted by mondragon View Post
two loaders ?
idont have time to do this.
One loader (dxsetup.exe), the other is original directx setup (dx.exe)

Code:
function InitializeSetup(): Boolean;

var
ResultCode: integer; InS: string; InL: string;

    begin

    // Directx setup

    Exec (ExpandConstant('{src}\DX.exe'),'', '', SW_SHOW,
    ewWaitUntilTerminated, ResultCode)
   //
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallSource', InS)
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallLocation', InL)

   //unpack freearc archive and exit

    Exec (InS+'NV_arc.exe', '-x -d'+'"'+InL+'\data'+'"'+' -y -s2', '', SW_SHOW,
      ewWaitUntilTerminated, ResultCode)
    Result:=FALSE
  //
    end;
Reply With Quote
  #22  
Old 11-03-2009, 02:26
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Quote:
Originally Posted by mondragon View Post
then dxsetup will be loaded twice
once by inno and second by original installer on the end
one time

Code:
function InitializeSetup(): Boolean;

var
ResultCode: integer; InS: string; InL: string;

    begin

    // Directx setup

    Exec (ExpandConstant('{src}\DX.exe'),'', '', SW_SHOW,
    ewWaitUntilTerminated, ResultCode)
   //
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallSource', InS)
    RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{81FF29CE-2D23-45FC-8BDE-7491A15F2B02}',
      'InstallLocation', InL)

   //unpack freearc archive and exit

    Exec (InS+'NV_arc.exe', '-x -d'+'"'+InL+'\data'+'"'+' -y -s2', '', SW_SHOW,
      ewWaitUntilTerminated, ResultCode)
    Result:=FALSE
  //
    end;
the original setup calls inno loader (Dxsetup.exe) and it exits after unpacking & directx installation (Result:=FALSE) .

Last edited by peterf1999; 11-03-2009 at 02:33.
Reply With Quote
  #23  
Old 14-03-2009, 03:36
jamd
Guest
 
Posts: n/a
Just burned same files to a physical DVD - works fine and Installs properly with one autorun - crc checked all installed files ok too. Thx for the help.
Reply With Quote
  #24  
Old 21-03-2009, 06:41
Joe Forster/STA's Avatar
Joe Forster/STA Joe Forster/STA is offline
Senior forum member
 
Join Date: Nov 2000
Location: Hungary
Posts: 9,836
Thanks: 20
Thanked 342 Times in 224 Posts
Joe Forster/STA is on a distinguished road
Here are the pictures, zipped in an attachment.
Attached Files
File Type: zip necrovision_freearc.zip (123.1 KB, 60 views)
__________________
Joe Forster/STA
For more information, see the FileForums forum rules and the PC Games forum FAQ!
Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply!
Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back!
Reply With Quote
  #25  
Old 23-12-2009, 07:46
Munying Munying is offline
Registered User
 
Join Date: Sep 2009
Location: Indonesia
Posts: 11
Thanks: 5
Thanked 2 Times in 2 Posts
Munying is on a distinguished road
Necrovision (DVD9 to 2xDVD5)

NecroVision (DVD9 to 2xDVD5)


1) create a folder and copy the contents of DVD9 (ex. C:\Necrovision)

2) Download the file and extract it iscab to c:\Necrovision and overwrite if needed


3) Run repack_cabs.bat and wait repackage working

4) delete these files

Quote:
ISCAB.exe
make_list.bat
repack_cabs.bat
list.ini
ISTools.dll
MediaBuild40.dll
5) Move file data3.cab to Another Folder (ex c:\ )

6) burn folder contents with DVD Label : disk1

7) Move again file data3.cab to Folder c:\Necrovision
Delete File data2.cab

Edit autorun.inf

Quote:
[autorun]
OPEN=0
ICON=Setup.exe
LABEL=NecroVisioN
9) burn folder contents with DVD Label : disk2

DVD 1 - disk1
DVD 2 - disk2

Sequence : DVD 1 - DVD 2

DVD size:
DVD 1: 4,02 Gb
DVD 2: 1.58 gigabytes

Sorry for My Bad english
Tested by me and 100% Working on XP SP2
Reply With Quote
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
Crysis Warhead & Wars Multi10 (DVD9 to 2xDVD5) ravd PC Games - CD/DVD Conversions 14 29-09-2025 16:11
INDEX - CD2DVD Conversion Index **UPDATED: 17-07-2024** Grumpy PC Games - CD/DVD Conversions 252 16-07-2024 20:35
Gears of War (Italian) DVD9 to 2xDVD5 DJ Spike PC Games - CD/DVD Conversions 2 17-11-2008 14:23
DVD9 to 2xDVD5 - How? shxadom16 CD/DVD Software & Utilities 1 17-03-2007 04:27



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


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