#1
|
|||
|
|||
INNO TROUBLESHOOT - Questions Here
To keep forum clean, ask your questions, explain your problems about INNO Setup and it's contents in here, instead of opening threads about them.
Before asking your question, check HERE to see if the answer is already there. Last edited by Grumpy; 08-08-2012 at 03:57. |
The Following 6 Users Say Thank You to REV0 For This Useful Post: | ||
Behnam2018 (30-01-2020), GopnikRepackz (01-06-2021), kajubin (28-09-2013), mertderler (16-02-2016), Razor12911 (28-02-2013), Vatsal Singh (03-01-2014) |
Sponsored Links |
#2
|
||||
|
||||
Originally Posted by JacksMafia
ok first thanks so much REV0 for this tutorials i really understood much from it but i'm still beginner in this so you'll have to bear me for a while 1.i already got video and insert it in to setup.cab no problem in this but when installation start there is no audio but the video works ok and the menu music works fine too .i found video in setup.cab and i replaced it-deleted my video-and it worked fine so what i do wrong? 2.i need you to tell me what's the best compression ratio for internal installation i now use this Compression=lzma2/ultra64 ;ExtraDiskSpaceRequired={#ExtraNeedSize} LZMADictionarySize=65536 CompressionThreads=3 LZMANumFastBytes=273 SolidCompression=yes LZMAUseSeparateProcess=yes is this the best of it? 3. after game installed if i run the dvd again it doesn't detect that the game is installed meaning that the play button is not active why is that? the game i try to install doesn't have key in registry by default so i create a simple key for it have a look on it [Registry] Root: HKLM; SubKey: "SOFTWARE\THQ\DoW2 CR"; ValueName: UninstallString; ValueData: {uninstallexe}; ValueType: string; Flags: UninsDeleteKey; is that right? or i have to do something else? that's all for now thanks for advise
__________________
Can't find a Game Conversion? Check the 'Conversion INDEX'
Last edited by Grumpy; 08-08-2012 at 05:43. |
The Following User Says Thank You to Grumpy For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#3
|
|||
|
|||
Quote:
2. yes, lzma2/ultra 64 is the strongest compression for internal setups 3. Because INNO has it's own regkeys so it will detect that game is not installed, that's normal. And like i stated in tutorial, DO NOT play with Subkey. In every case, subkey will look like this: Code:
Root: HKLM; SubKey: "SOFTWARE\{code:GetAppPublisher}\{code:GetAppName}"... |
The Following User Says Thank You to REV0 For This Useful Post: | ||
Behnam2018 (31-01-2020) |
#4
|
||||
|
||||
ok new question i will use external compressor but i still need the command line for compress a folder that contains a lot of sub-folders
so what to write ? cause if i wrote the path for it followed by \. it compress the contents but not the folders -files only- i need to know what code to write so it compress not just the files in the main game folder but also the folders in it which surly contains data here is what i did arc a -ep -w.\ .\Disk1\Data1.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\*" -x"%choice1%\GameAssets" if ERRORLEVEL 1 goto arcfail this will exclude GameAssets folder and should compress every thing else but it only compress the other files in the main folder but not the other folders thanks for advise Last edited by JacksMafia; 08-08-2012 at 21:31. |
The Following User Says Thank You to JacksMafia For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#5
|
|||
|
|||
Quote:
|
The Following User Says Thank You to REV0 For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#6
|
||||
|
||||
Have you ever tried -r parameter?!
|
The Following User Says Thank You to Onizuka87k For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#7
|
|||
|
|||
Well, i'm not God, i cant know everything, i said 'i believe' not 'i know'. Also i didnt use precomp srep until now. So thanks for saying -r parameter, maybe you can also tell us where to put it so i can update tutorial thread
Cheers Nevermind, found it Last edited by REV0; 09-08-2012 at 07:57. |
The Following User Says Thank You to REV0 For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#8
|
||||
|
||||
Quote:
I expressed it badly, i was in a hurry! |
The Following User Says Thank You to Onizuka87k For This Useful Post: | ||
Behnam2018 (30-01-2020) |
#9
|
||||
|
||||
ok guys let get in the middle here i have tried using -r command but it didn't done the job for me and here is what i mean
as you see in the image there is files and folder compressed in the .bin file the problem is the folder Assets contains sub-folders ArchiveDesign and Maps which are compressed out of the Assets folder......!!!! also the files inside these sub-folders are compressed out of them .......!!! these files should be inside these sub-folders and these sub-folders should be inside the Assets folder here the command i used arc a -ep -r -w.\ .\Disk2\Data2.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\Assets" if ERRORLEVEL 1 goto arcfail you will notice that i used -r command which gives me the same result if i didn't use it and write at the end of the command \. to be like this arc a -ep -w.\ .\Disk2\Data2.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\Assets\." if ERRORLEVEL 1 goto arcfail so help please |
The Following User Says Thank You to JacksMafia For This Useful Post: | ||
Behnam2018 (31-01-2020) |
#10
|
|||
|
|||
Quote:
If you used BAMSE's, the one i gave in tutorial thread, you'll use them instead -w. So, both of bat files are different. I suggest to start from BAMSE's, so make thing easier as beginning. |
#11
|
||||
|
||||
Quote:
Code:
arc a -r -w.\ .\Disk2\Data2.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\Assets\*" Last edited by Onizuka87k; 09-08-2012 at 12:30. |
The Following User Says Thank You to Onizuka87k For This Useful Post: | ||
Behnam2018 (31-01-2020) |
#12
|
||||
|
||||
JacksMafia your problem is -ep instead of -ep1
Have a nice day |
The Following User Says Thank You to BAMsE For This Useful Post: | ||
Behnam2018 (31-01-2020) |
#13
|
||||
|
||||
Hum.. -ep1 compress the content of the root folder and NOT the root folder itself.
I mean |
#14
|
||||
|
||||
the working code is
arc a -r -ep1 -w.\ .\Disk1\Data1.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\*" -x"%choice1%\GameAssets\*" if ERRORLEVEL 1 goto arcfail thanks guys for helping me |
#15
|
||||
|
||||
ok guys here is another problem i got when moving on to 2 step
GameAssets folder contains 4 sub-folders i need to compress 2 of them to be .bin file and the other 2 to another .bin file i used the code above but i ended with strange result which is compressing the GameAssets folder in the first bin file which i excluded it in the code like you see above and the compress the contents of the GameAssets folder to another bin file you see here that GameAssets folder exist and-it's not visible here-it's sub-folders too and it's empty and here is the contents of one of the sub-folders in the other bin file so help pleaseeeeeeeeeee |
The Following User Says Thank You to JacksMafia For This Useful Post: | ||
Behnam2018 (08-01-2020) |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |