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)

keremaster 23-07-2013 02:27

How I can add close antivirus warning on inno setup?

Razor12911 23-07-2013 05:56

add msgbox function under initializewizard procedure.

Msgbox example is found in inno setup documentation.

Riddle_R 28-07-2013 07:12

I created an arc with no compression --> data.arc
I then precomped it with " -intense -v -c-"
and the file i got was -----> data.pcf
I then compressed it with free arc again "-mx -ld1600m" and got it as
data.arc......

i wanted to extract use this file in my setup which i created with Yenner90's Custom Installer...

i used this

[ExtractSettings]
FreeArcFile1={src}\Data.cab;DestDir:{app};Disk:1;P recSrep:0

but it didn't work...
so processed the pcf file with SREP 64 and got ---> data.pcf.srep
compressed it with freearc again to make it ---> data.arc

and then used the same extract settings....but i still got the same error...
can anyone plzz help me in gettin outta this ????

http://s15.postimg.org/gsuhjyorf/Untitled.jpg

Razor12911 28-07-2013 07:24

procedure of compressing is

data.arc - freearc
data.pcf - precomp
data.srep - srep/srep64
data.cab - freearc(.cab can be changed with any extension)
PrecSrep:1; (Must be enabled if ARC-PCF-SREP-ARC method is used)

Riddle_R 28-07-2013 07:57

I used this batch to process my files...
i change the value from 0 to 1 ..but i stll get the same error...

@echo off
precomp -intense -v -c- data.arc
del data.arc
srep64.exe -m3f data.pcf
ren data.pcf.srep data.srep
del data.pcf
arc.exe a -mx -ld1600m data.srep data.cab
exit

pakrat2k2 28-07-2013 08:51

in setup.ini make sure that you have PrecompVer=Inside

Riddle_R 29-07-2013 04:54

@packarat...
can u please elaborate it a little ??? i didn't get what u wanted to say...
I am using precomp 0.4.2 alpha...

I have attatched my setup.ini...
if u can please find a solution for thiss...
thnxx

pakrat2k2 29-07-2013 05:03

example only use your setup.ini & add PrecompVer=Inside at bottom of [Installoptions] section
Code:

[InstallOptions]
ApplicationName=Two Worlds 2 Epic Edition
GameSize=5229
MyExecutableName=TwoWorlds2_DX10.exe
MyExecutablePath=Two Worlds II
MyExecutableIconName=Two Worlds II-DX10
MyExecutableName2=TwoWorlds2.exe
MyExecutablePath2=Two Worlds II
MyExecutableIconName2=Two Worlds II-DX9
MyExecutableName3=Castle Defense
MyExecutablePath3=Castle Defense\TW2 Castle Defense
MyExecutableIconName3=TW2CD.exe
Editor=pakrat/sentinelks
Lang=en
PrecompVer=Inside


Riddle_R 29-07-2013 06:31

I made it this way now..

[InstallOptions]
ApplicationName=Hitman - Blood Money
Publisher=IO interactive
GameSize=9950
MyExecutableName=hitmanbooldmoney.exe
Editor=Riddle_R
Lang=en,
[InstallSettings]
GDFBinary=GDF.dll
[ExtractSettings]
FreeArcFile1={src}\Data.arc;DestDir:{app};Disk:1;P recSrep:1
PrecompVer=Inside


Still get the same error :(:(

mausschieber 29-07-2013 07:44

Quote:

Originally Posted by Riddle_R (Post 421459)
I made it this way now..

[InstallOptions]
ApplicationName=Hitman - Blood Money
Publisher=IO interactive
GameSize=9950
MyExecutableName=hitmanbooldmoney.exe
Editor=Riddle_R
Lang=en,
[InstallSettings]
GDFBinary=GDF.dll
get it here PrecompVer=Inside

[ExtractSettings]
FreeArcFile1={src}\Data.arc;DestDir:{app};Disk:1;P recSrep:1
PrecompVer=Inside This must be over extractsettings


Still get the same error :(:(

if I read this correctly from pakrat2k2
sorry my bad english

Razor12911 29-07-2013 08:24

and it must be

[ExtractSettings]
FreeArcFile1={src}\Data.cab;DestDir:{app};Disk:1;P recSrep:1

pakrat2k2 29-07-2013 09:20

Quote:

Originally Posted by Riddle_R (Post 421459)
I made it this way now..

[InstallOptions]
ApplicationName=Hitman - Blood Money
Publisher=IO interactive
GameSize=9950
MyExecutableName=hitmanbooldmoney.exe
Editor=Riddle_R
Lang=en,
[InstallSettings]
GDFBinary=GDF.dll
[ExtractSettings]
FreeArcFile1={src}\Data.arc;DestDir:{app};Disk:1;P recSrep:1
PrecompVer=Inside


Still get the same error :(:(

add PrecompVer=Inside at bottom of [Installoptions] section,
with PrecompVer=Inside you DONT need PrecSrep:1 at end of FreeArcFile1 line...
ONLY if you made your archives old way
freearc -m0 compression data.arc
precomp data.arc > data.pcf
srep data.pcf > data.srep
freearc ( -m9x -ld192m (max compression method you want ) data.srep > data.xyz ( extension can be any name. ))

and REMOVE [InstallSettings] shouldnt be there.

MyExecutableName=hitmanbooldmoney.exe > typo ? should be hitmanbloodmoney

Cesar82 02-08-2013 18:29

Help
 
I need help (Advanced Users)
Using CIU in 1.0.0.6, if I put flash.swf (Page Installer) and Setup.cjstyles (Skin), is occurring error in the installer completion or cancellation. (Windows XP SP3)

http://i.imgur.com/BgHXtSy.jpg

And in the TEMP folder create a folder named WERxxxx.dir00.
Putting only Skin or Flash works normally.

What can it be? Can anyone tell me how to get around without removing any?

Fabioddq 03-08-2013 00:01

Quote:

Originally Posted by LuisCésar82 (Post 421555)
I need help (Advanced Users)
Using CIU in 1.0.0.6, if I put flash.swf (Page Installer) and Setup.cjstyles (Skin), is occurring error in the installer completion or cancellation. (Windows XP SP3)

http://i.imgur.com/BgHXtSy.jpg

And in the TEMP folder create a folder named WERxxxx.dir00.
Putting only Skin or Flash works normally.

What can it be? Can anyone tell me how to get around without removing any?

This happens because of cjstyles. Happens sometimes on Win7 too. Simple way, remove cjstyles from the installer. :D
or you need to add a exception to the exe on Data Execution Prevention.

To add a exception on WinXP look here: http://support.microsoft.com/kb/875352/pt-br

EDIT...

Look for this part:

Quote:

Se estiver conectado como um administrador, pode-se configurar manualmente a DEP para alternar entre as diretivas OptIn e OptOut, usando a guia Prevenção de execução de dados em Propriedades do sistema. O seguinte procedimento descreve como configurar manualmente a DEP no computador.

1. Clique em Iniciar, em Executar, digite sysdm.cpl e clique em OK.
2. Na guia Avançado, em Configurações, clique em Configurações.
3. Na guia Prevenção de execução de dados, use um dos seguintes procedimentos:
- Clique em Ativar a DEP só para programas e serviços essenciais do Windows para selecionar a diretiva OptIn.
- Clique em Ativar a DEP para todos os programas e serviços, exceto aqueles que selecionei para selecionar a diretiva OptOut e em Adicionar para adicionar os programas que você não quer que use o recurso DEP.
4. Clique em OK duas vezes.

buttignol 12-08-2013 20:43

Friends removing the marker isdone hours minutes and seconds
leave only time
leave it eg
Elapsed: 00:00:12
Remaining: 00:20:00


All times are GMT -7. The time now is 18:41.

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