|
|
|
#1
|
||||
|
||||
|
Quote:
![]()
|
| Sponsored Links |
|
#2
|
||||
|
||||
|
NOOO I solved it, let alone if this could stop me ....
I armored in * exe. Dxsetup Web Installer, and everything works perfectly ... hihihihihi. ![]() ![]() ![]() ![]() Simply using "Easy Binder 2.0" ![]()
|
| The Following User Says Thank You to felice2011 For This Useful Post: | ||
Carldric Clement (07-10-2014) | ||
|
#3
|
||||
|
||||
|
guyz, i'm getting this error
|
|
#4
|
|||
|
|||
|
mmmmmhh
|
|
#5
|
||||
|
||||
|
any reply ?
|
|
#6
|
||||
|
||||
|
Can you give your Inno Setup Script?
(Not all files need it! Need Script Only!) ![]()
|
|
#7
|
||||
|
||||
|
it's the same as in the topic !
i have not edited it !! |
|
#8
|
||||
|
||||
|
Guys after installing the game, the components are installed together, one after another without waiting to be closed at the end of installation.
How do I insert a wait command, type (WAIT) (-W) and wait for the closure of the component, and then run the next ????? |
|
#9
|
||||
|
||||
|
Find This Code From Black-Box Script
Code:
if CurStep=ssPostInstall then begin
if DirectXCB.Checked then begin
Status.Caption:='Installing DirectX...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 223;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe'),'/q',false);
end;
if NvidiaPhysx.Checked then begin
Status.Caption:='Installing Nvidia Physx...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\PhysX.msi'),'/q',false);
end;
if VisualCCB.Checked then begin
Status.Caption:='Installing Visual C++...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\vcredist_x86.exe'),'/q',false);
end;
if Framework.Checked then begin
Status.Caption:='Installing Framework...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\dotnetfx.exe'),'/q',false);
end;
end;
Code:
if CurStep=ssPostInstall then begin
if DirectXCB.Checked then begin
Status.Caption:='Installing DirectX...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 223;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe'),'/silent',false);
end;
if NvidiaPhysx.Checked then begin
Status.Caption:='Installing Nvidia Physx...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\PhysX.msi'),'/q',false);
end;
if VisualCCB.Checked then begin
Status.Caption:='Installing Visual C++...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\vcredist_x86.exe'),'/q',false);
end;
if Framework.Checked then begin
Status.Caption:='Installing Framework...';
Status.Left := 200;
Status.Top := 200;
Status.Width := 227;
Status.Height := 20;
Exec2(ExpandConstant('{src}\Redist\dotnetfx.exe'),'/q',false);
end;
end;
![]()
|
| The Following User Says Thank You to Carldric Clement For This Useful Post: | ||
Gamer009 (08-10-2014) | ||
|
#11
|
|||
|
|||
|
i have make a data.bin file using below command line
Quote:
this installer do not works with this compression method,..please help me,..give me any installer for this compression command
|
|
#12
|
||||
|
||||
|
Quote:
They need 32-bit (I'm think, hmm...)! Try this code it: Code:
-msrep+delta+lzma:a1:mfbt4:d158m:fb273:mc1000:lc8 ![]()
|
|
#13
|
||||
|
||||
|
guyz, the dx is working now in the silent mode
Last edited by Gamer009; 08-10-2014 at 22:07. |
|
#14
|
||||
|
||||
|
Quote:
![]()
|
| The Following User Says Thank You to Carldric Clement For This Useful Post: | ||
Gamer009 (08-10-2014) | ||
|
#15
|
|||
|
|||
|
Is this installer support SREP 3.93 BETA?
|
![]() |
|
|
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 |
| Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |