FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

Brazilica 17-08-2012 08:21

Hi. I want to make a conversion but i'm stuck at the setup.exe. I want to modify the setup.exe in order to ask me when to insert the second disk. if i don't modify the setup file i will receive an error "error, the file is not on thie disk" (something like that) but if i'll insert the second disk and press ok the instalation will continue.
The folder looks like that:
http://img43.imageshack.us/img43/7821/58851823.jpg

You can download the setup file from here

REV0 17-08-2012 09:13

According yo yener's script (and assuming every exe has same system) the information you're looking to change was actually created WHEN bin files were created by setup.

So, to simplify the explanation, for example;

If you have 3 bin and setup.exe which were created bt script, the installation will check these 3 bin files during installation. If you put 2 bin files instead of 3, setup will ask 'Insert disk1', if you put 4 or more instead of 3, setup will continue to install without asking it.

When some setups are saying only 'insert next disk' some of them are demanding correct bin files and disk numbers. I suggest to re-create or convert your game instead of editing (if it's easy to do)

Brazilica 17-08-2012 10:31

I made a 3xDVD5 conversion. Everityhing is ok except that the setup ask for disk1 instead of disk2 and disk3, but this is not a major problem.

Thx. Have a nice day

JacksMafia 17-08-2012 11:02

Quote:

Originally Posted by Brazilica (Post 405465)
I made a 3xDVD5 conversion. Everityhing is ok except that the setup ask for disk1 instead of disk2 and disk3, but this is not a major problem.

Thx. Have a nice day

your problem is in setup.ini you have to modify it so the setup ask you for disk 2 so if you have 3 data files on first disk make the forth like this

FreeArcFile1={src}\Data4.bin;DestDir:{app};Disk:2

so Data4.bin is on disk 2 notice Disk number in the last of the line ;)

that's all have fun :)

muzz 18-08-2012 10:03

Hey i made my own setup.cab with all the files but no background and other things are coming

JacksMafia 19-08-2012 20:41

ok now i'm able to deal with the registry keys very good but just one question left
how to create sub-folder in a folder ? i have tried many times with no luck

anyone knows?
thanks

FatalError 20-08-2012 02:23

How to hide main progress bar?

REV0 20-08-2012 03:10

Quote:

Originally Posted by JacksMafia (Post 405584)
ok now i'm able to deal with the registry keys very good but just one question left
how to create sub-folder in a folder ? i have tried many times with no luck

anyone knows?
thanks

Sub-folder in a folder ?

You're using FreeArc ?

Quote:

Originally Posted by FatalError (Post 405591)
How to hide main progress bar?

Why you need to hide it anyway :confused:

yener90 20-08-2012 03:41

hiding progressbar xD
you can set moveprogressbar in interfacesettings to 5000 to hide it.

FatalError 20-08-2012 03:59

Quote:

Originally Posted by yener90 (Post 405599)
hiding progressbar xD
you can set moveprogressbar in interfacesettings to 5000 to hide it.

Okey,How to move progress bar and extracting file item label?

JacksMafia 20-08-2012 07:00

Quote:

Originally Posted by REV0 (Post 405597)
Sub-folder in a folder ?

You're using FreeArc ?

maybe i didn't explain much i mean in the registry like this :)
http://img838.imageshack.us/img838/6894/26422814.jpg

thanks

REV0 20-08-2012 07:18

Quote:

Originally Posted by JacksMafia (Post 405610)
maybe i didn't explain much i mean in the registry like this :)
http://img838.imageshack.us/img838/6894/26422814.jpg

thanks

simple. I'll given an example:

Publisher: EA (leave it in regkey as it is)

Appname: Need for Speed Most Wanted (leave it in regkey as it is)

"SOFTWARE\{code:GetAppPublisher}\{code:GetAppName} \ergc\blabla..

You know the rest i believe :D

JacksMafia 20-08-2012 07:20

Quote:

Originally Posted by REV0 (Post 405612)
simple. I'll given an example:

Publisher: EA (leave it in regkey as it is)

Appname: Need for Speed Most Wanted (leave it in regkey as it is)

"SOFTWARE\{code:GetAppPublisher}\{code:GetAppName} \ergc\blabla..

You know the rest i believe :D

that was fast and yeah i know the rest
one more question i made 2 dvd for my game the additional installation folder exist on the 2 dvd so if i choose to install dx or vcredist it runs fine but if i choose to not install dx or vcredist the installation of the game finish with out of range error game installed fine but this out of range error really kills me
any ideas ?!!!!
thanks mate

FatalError 22-08-2012 03:51

ISSI duplicates...
not working this;

#define ISSI_UseMyInitializeWizard

procedure ISSI_InitializeWizard();
begin

end;

or how to use different InitializeWizard();

Please Help..!!

and

How to move progress bar and extracting file item label?

pakrat2k2 22-08-2012 16:41

fatalerror

you define initializewizard # first, depending on how many things you want to do. just increase the number for each seperate item.

#define InitializeWizard();
#define InitializeWizard(1);
#define InitializeWizard(2);


procedure InitializeWizard();
begin
..
..
..
end;
procedure InitializeWizard(1);
begin
..
..
..
end;
procedure InitializeWizard(2);
begin
..
..
..
end;

etc...

as for second part of question read yener's tutorial topic, its been asked & answered already.

FatalError 23-08-2012 00:57

Thank You!!But its only yener90's script?Don't working my script.

pakrat2k2 23-08-2012 19:58

Quote:

Originally Posted by FatalError (Post 405678)
ISSI duplicates...
not working this;

#define ISSI_UseMyInitializeWizard

procedure ISSI_InitializeWizard();
begin

end;

or how to use different InitializeWizard();

Please Help..!!

and

How to move progress bar and extracting file item label?

you wrote & I replied for the first part... which again is simple to see what you have wrong..

#define ISSI_UseMyInitializeWizard
--> bold part is missing from procedure line...

procedure ISSI_UseMyInitializeWizard();
begin
.
.
.
.
end;

FatalError 24-08-2012 05:33

Quote:

Originally Posted by pakrat2k2 (Post 405748)
you wrote & I replied for the first part... which again is simple to see what you have wrong..

#define ISSI_UseMyInitializeWizard
--> bold part is missing from procedure line...

procedure ISSI_UseMyInitializeWizard();
begin
.
.
.
.
end;

Don't work but I'm trying update issi file.Will be working now...

jksengko 19-09-2012 21:29

how to auto launch settings.exe after install finish yener90's inno script

REV0 20-09-2012 02:45

Quote:

Originally Posted by jksengko (Post 406787)
how to auto launch settings.exe after install finish yener90's inno script

If i'm not mistaken it does not support auto launch of an exe file. However you can add it as second exe file in setup so, you will see play and setting exe i n autorun part. Also on desktop. Investigate yener's alan wake conversion along with his explications in tutorial thread.

Evil Boy 20-09-2012 04:03

Can anyone tell me code for adding video while game is installing!!Installer is simple I just want to add a a video that starts when installation of Game starts!!

kashifagaria 24-09-2012 15:22

You Know For This Error

Source: Include\7z.com; DestDir: {tmp}; Flags: dontcopy

7z.com

pakrat2k2 24-09-2012 16:02

Quote:

Originally Posted by kashifagaria (Post 407120)
You Know For This Error

Source: Include\7z.com; DestDir: {tmp}; Flags: dontcopy

7z.com

its an EXE NOT COM, thats why the error

gentilu 26-09-2012 09:21

Why, my inno setup, not create icon for unistall?

ashutosh4555 27-09-2012 03:11

how can i extract pcf --> srep--> compresed file in inno setup
nt in CI

kashifagaria 27-09-2012 11:29

I create the setup for inno setup Progresbar not show what can i do
http://imageshack.us/f/16/64116425.jpg/

Sorry For my bad english

REV0 28-09-2012 16:49

Quote:

Originally Posted by kashifagaria (Post 407260)
I create the setup for inno setup Progresbar not show what can i do
http://imageshack.us/f/16/64116425.jpg/

Sorry For my bad english

I had this thing before, dont put buttons too much high in setup.

kashifagaria 29-09-2012 02:55

Thanks
 
Quote:

Originally Posted by REV0 (Post 407309)
I had this thing before, dont put buttons too much high in setup.

Thanks

Evil Boy 06-10-2012 18:56

Hello !!I want help on this !! Can anyone tell me code that will make a compact view button while installation like this : http://speedcap.net/sharing/534/b6c9...65836e8553.png(see below in let corner) and after clicking that button installer go in Right corner and become small like this : http://speedcap.net/sharing/534/72e9...45f3051a68.png

Thnx in advance for helping me!!

55hamed 11-10-2012 14:10

How to add a password to setup.cab please

yener90 11-10-2012 14:39

there is a tool...called setup.cab cryptor

Evil Boy
whats the advantage?!
i see no point.

vasu001 22-10-2012 20:18

aFTER installing max payne 3 from inno setup provided by peter i get this error-

"PlayMaxPayne3 has encountered a problem and need to be close"

this error is only on windows xp and also the compressed setup was not launching on xp.

what to do?

Joe Forster/STA 24-10-2012 03:25

Quote:

Originally Posted by vasu001 (Post 408656)
"PlayMaxPayne3 has encountered a problem and need to be close"

This is a general error message; be more specific.

vasu001 24-10-2012 04:24

Quote:

Originally Posted by Joe Forster/STA (Post 408728)
This is a general error message; be more specific.

1.) Well maybe it is,but before compressing the installer of game was perfectly working in both xp and 7 but now it is only working in win7[i have dual windows].

2.) before ,with original installer the game was not giving this error but now it gives in xp. [i have installed the game in 7 and its working there but not on xp].

well thats my problem..........

Also one more thing.- Do i have to keep those leftover files like compress.bat,levels1,levels2,etc. the files outside Disks 1,2,3,4 folders.:confused:

kumarvivek1990 24-10-2012 07:30

can anyone tell me how to add directx setup in the installer before installing game file. I already have have the full installation on the disk and want to install it from dvd. please also tell me coding which is to be added in the install script file(i.e .iss file)

kumarvivek1990 24-10-2012 07:38

Can background images be added in the installer without the need of setup.cab & and setup.ini & also provide me the coding to be added in compiler(if possible)?

REV0 26-10-2012 00:55

Quote:

Originally Posted by vasu001 (Post 408742)
1.) Well maybe it is,but before compressing the installer of game was perfectly working in both xp and 7 but now it is only working in win7[i have dual windows].

2.) before ,with original installer the game was not giving this error but now it gives in xp. [i have installed the game in 7 and its working there but not on xp].

well thats my problem..........

Also one more thing.- Do i have to keep those leftover files like compress.bat,levels1,levels2,etc. the files outside Disks 1,2,3,4 folders.:confused:

You should ask this to peterf himself because CI you used belongs to him

Quote:

Originally Posted by kumarvivek1990 (Post 408755)
can anyone tell me how to add directx setup in the installer before installing game file. I already have have the full installation on the disk and want to install it from dvd. please also tell me coding which is to be added in the install script file(i.e .iss file)

AFAIK, you can't edit current installation files to add DX.

Quote:

Originally Posted by kumarvivek1990 (Post 408758)
Can background images be added in the installer without the need of setup.cab & and setup.ini & also provide me the coding to be added in compiler(if possible)?

You need cab for backgrounds. You can do internal setup and merge cab and exe tho.

JacksMafia 02-11-2012 09:03

hi guys i 'm trying to do Command And Conquer Red Alert 3-old game i know but very good one- but i'm stuck with movies folder with 3.78 gb of .vb6 files this is the codes i have tried
Quote:

-mprecomp:t-nfj:zl78,99:d0+srep+exe+delta+lzma:a1:mfbt4:d256m: fb128:mc1000:lc8
and i tried this too
Quote:

-msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
and i have tried to do the job with freearc but no good i only managed to compress the rest of the game files from 3.78 gb to 1.92

any ideas?!!!

thanks

BAMsE 02-11-2012 14:43

All video formats use compression so movies are poorly compressed with archivers. Only way to shrink their size is to recompress them. vb6 is some mp4 container so it'll be quite complicated.

Evil Boy 20-11-2012 02:19

Quote:

Originally Posted by yener90 (Post 407896)
there is a tool...called setup.cab cryptor

Evil Boy
whats the advantage?!
i see no point.

If someone want a small installer can get it by simply clicking compact button and i want to knew


All times are GMT -7. The time now is 11:13.

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