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

Reply
 
Thread Tools Search this Thread Display Modes
  #661  
Old 23-07-2013, 02:27
keremaster keremaster is offline
Registered User
 
Join Date: Oct 2012
Location: Turkey
Posts: 1
Thanks: 1
Thanked 0 Times in 0 Posts
keremaster is on a distinguished road
How I can add close antivirus warning on inno setup?
Reply With Quote
Sponsored Links
  #662  
Old 23-07-2013, 05:56
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
add msgbox function under initializewizard procedure.

Msgbox example is found in inno setup documentation.
Reply With Quote
  #663  
Old 28-07-2013, 07:12
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
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 ????

Reply With Quote
  #664  
Old 28-07-2013, 07:24
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
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)
Reply With Quote
  #665  
Old 28-07-2013, 07:57
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
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
Reply With Quote
  #666  
Old 28-07-2013, 08:51
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
in setup.ini make sure that you have PrecompVer=Inside
Reply With Quote
  #667  
Old 29-07-2013, 04:54
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
@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
Reply With Quote
  #668  
Old 29-07-2013, 05:03
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
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
Reply With Quote
  #669  
Old 29-07-2013, 06:31
Riddle_R Riddle_R is offline
Registered User
 
Join Date: Jun 2013
Location: india
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Riddle_R is on a distinguished road
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
Reply With Quote
  #670  
Old 29-07-2013, 07:44
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,325
Thanks: 6,767
Thanked 11,733 Times in 3,238 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by Riddle_R View Post
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
Reply With Quote
  #671  
Old 29-07-2013, 08:24
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
and it must be

[ExtractSettings]
FreeArcFile1={src}\Data.cab;DestDir:{app};Disk:1;P recSrep:1
Reply With Quote
  #672  
Old 29-07-2013, 09:20
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by Riddle_R View Post
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

Last edited by pakrat2k2; 29-07-2013 at 09:31.
Reply With Quote
  #673  
Old 02-08-2013, 18:29
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
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)



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?
Reply With Quote
  #674  
Old 03-08-2013, 00:01
Fabioddq's Avatar
Fabioddq Fabioddq is offline
Die Hard Member
 
Join Date: Oct 2011
Location: Earth
Posts: 1,221
Thanks: 336
Thanked 2,147 Times in 427 Posts
Fabioddq is on a distinguished road
Quote:
Originally Posted by LuisCésar82 View Post
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)



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.
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.

Last edited by Fabioddq; 03-08-2013 at 00:07.
Reply With Quote
The Following User Says Thank You to Fabioddq For This Useful Post:
Cesar82 (03-08-2013)
  #675  
Old 12-08-2013, 20:43
buttignol's Avatar
buttignol buttignol is offline
Registered User
 
Join Date: Sep 2012
Location: Brasil
Posts: 126
Thanks: 102
Thanked 16 Times in 13 Posts
buttignol is on a distinguished road
Friends removing the marker isdone hours minutes and seconds
leave only time
leave it eg
Elapsed: 00:00:12
Remaining: 00:20:00
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
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



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


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