|
#886
|
||||
|
||||
|
Quote:
![]() no non va lo stesso provato in vari modi.
|
| Sponsored Links |
|
#887
|
||||
|
||||
|
Quote:
Code:
Make sure you backup it like
//Exec2(ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe'),'silent',false);
Exec2(ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe'),'/silent',false);
![]()
|
| The Following User Says Thank You to Carldric Clement For This Useful Post: | ||
Gamer009 (08-10-2014) | ||
|
#888
|
||||
|
||||
|
OK OK it works even before, the problem and the web installer dxsetup.
Did I just lose time. I tried with another setup and it works. 1)Exec2(ExpandConstant('{src}\Redist\DirectX\GPU-Z.exe'),'/silent',false); OK 2)Exec2(ExpandConstant('{src}\Redist\DirectX\DXSET UP.exe'),'/silent',false); NO OK someone explains to me reason??????????????????????? |
|
#889
|
|||
|
|||
|
obviously the silent command does not work with all setup (it would be simple and beautiful way) to find them, just enter in -Help bat and read his options for cmd
Last edited by Dante1995; 28-12-2014 at 20:54. |
|
#890
|
||||
|
||||
|
Quote:
![]()
|
|
#891
|
||||
|
||||
|
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) | ||
|
#892
|
||||
|
||||
|
guyz, i'm getting this error
|
|
#893
|
|||
|
|||
|
mmmmmhh
|
|
#894
|
||||
|
||||
|
any reply ?
|
|
#895
|
||||
|
||||
|
Can you give your Inno Setup Script?
(Not all files need it! Need Script Only!) ![]()
|
|
#896
|
||||
|
||||
|
it's the same as in the topic !
i have not edited it !! |
|
#897
|
||||
|
||||
|
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 ????? |
|
#898
|
||||
|
||||
|
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) | ||
|
#900
|
|||
|
|||
|
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
|
![]() |
|
|
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 |