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
  #1  
Old 14-01-2015, 15:48
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
along with that goto this topic & grab Reg to INNO Converter ENG.rar which will create a iss file so you can put those exported reg entries into your Inno script. They will of course need to be edited. IE in screenshot above shows InstallDir=E:\Program Files (x86)\Resident Evil 5, which would be changed to {app} so that anyone can install to where they want to & not to 1 specific location.

http://fileforums.com/showthread.php?t=92995
Reply With Quote
Sponsored Links
  #2  
Old 09-02-2015, 03:41
GhostSystem GhostSystem is offline
Registered User
 
Join Date: Jan 2015
Location: India, West Bengal
Posts: 12
Thanks: 5
Thanked 3 Times in 2 Posts
GhostSystem is on a distinguished road
how to disable cancel button in welcome page and second back button innosetup..
Reply With Quote
  #3  
Old 09-02-2015, 06:10
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 GhostSystem View Post
how to disable cancel button in welcome page and second back button innosetup..
if referring to yener's script, simply enter values bigger then image, or use negative values.
Reply With Quote
  #4  
Old 09-02-2015, 06:37
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
on a normal script, this is what you do.

[Code]
procedure CurPageChanged(CurPageID: Integer);
begin
case CurPageID of
wpWelcome:
begin
WizardForm.CancelButton.Enabled:=False; // to disable;
WizardForm.CancelButton.Visible:=False; // to hide;
WizardForm.BackButton.Enabled:=False; // to disable;
WizardForm.BackButton.Visible:=False; // to hide;
end;
end;
end;
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
pakrat2k2 (09-02-2015)
  #5  
Old 22-02-2015, 08:44
sied sied is offline
Registered User
 
Join Date: Jun 2013
Location: Indonesia
Posts: 153
Thanks: 215
Thanked 28 Times in 23 Posts
sied is on a distinguished road
Hi guys, it was the first time i learned inno convert, now im working on Lucius2 Project, I copied script houcine80 "http://fileforums.com/showthread.php?t=96328" . and changing setup.cab & setup.ini modification. The convert succesful, but the icon not appear on desktop during finishing installation process and the second issue while install the lucius 2 icon may changing into Middle Earth Shadow of Mordor icon.Would you tell me which part I have to fix????and how to make autorun aplication,at least please let me know,I need some help please ^.^
Reply With Quote
  #6  
Old 22-02-2015, 08:50
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
^^ Edit setup.ini & make sure these point to the correct places.
Code:
MyExecutableName=ShadowOfMordor.exe                                  
MyExecutablePath=
MyExecutableIconName=x64
First line of course points to your games exe, 2nd line if its not in the root of game, what folder is it in. 3rd is what you want shortcut name. Also make sure your setup.ico is for your game not mordor & is where the ISS scripts are.
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
sied (13-03-2015)
  #7  
Old 15-03-2015, 11:35
leotrim77 leotrim77 is offline
Registered User
 
Join Date: Nov 2014
Location: Globe
Posts: 19
Thanks: 0
Thanked 2 Times in 1 Post
leotrim77 is on a distinguished road
hey guys please HELP, why the script is not opening Direct X to install after the game is installed , Visual c++ start installing but Direct X not, for Direct X says: directx command line switches.

Why please help ... ?

or should I edit the scipt for this action ... ? please help me

Last edited by leotrim77; 15-03-2015 at 11:40.
Reply With Quote
  #8  
Old 15-03-2015, 12: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
wrong switch for DX

read this

http://fileforums.com/showthread.php?t=95092
Reply With Quote
  #9  
Old 15-03-2015, 13:09
leotrim77 leotrim77 is offline
Registered User
 
Join Date: Nov 2014
Location: Globe
Posts: 19
Thanks: 0
Thanked 2 Times in 1 Post
leotrim77 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
wrong switch for DX

read this

http://fileforums.com/showthread.php?t=95092
I am not understanding nothing that topic ...
where is the problem ... ? what should I edit on script ../ ?

my script right now is:

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;

Last edited by leotrim77; 15-03-2015 at 13:17.
Reply With Quote
  #10  
Old 15-03-2015, 13:24
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
proper switch for directx is silent not q

PhysX proper switch is s
C++ proper is /q /norestart
Reply With Quote
  #11  
Old 15-03-2015, 13:53
leotrim77 leotrim77 is offline
Registered User
 
Join Date: Nov 2014
Location: Globe
Posts: 19
Thanks: 0
Thanked 2 Times in 1 Post
leotrim77 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
proper switch for directx is silent not q

PhysX proper switch is s
C++ proper is /q /norestart
please can you explain me something what is silent ,,, does it mean that Direct x will install silent without inerface ... ?? without watch ???

because I edited my script as you said now I don't see nothing ... ?

just I see : Installing Direct X .... after 10 sec ... I see Installing Visual C++ ... ? is it okay ??
Reply With Quote
  #12  
Old 15-03-2015, 14:00
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,387
Thanks: 6,823
Thanked 11,903 Times in 3,294 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by leotrim77 View Post
please can you explain me something what is silent ,,, does it mean that Direct x will install silent without inerface ... ?? without watch ???

because I edited my script as you said now I don't see nothing ... ?

just I see : Installing Direct X .... after 10 sec ... I see Installing Visual C++ ... ? is it okay ??
/SILENT, /VERYSILENT

Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but the installation progress window is
__________________
It would be nice if you appreciate my work with the thanks Button
Reply With Quote
  #13  
Old 15-03-2015, 14:06
leotrim77 leotrim77 is offline
Registered User
 
Join Date: Nov 2014
Location: Globe
Posts: 19
Thanks: 0
Thanked 2 Times in 1 Post
leotrim77 is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
/SILENT, /VERYSILENT

Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but the installation progress window is
aha now I am understanding but which is for interface ??? I want to see direct X during installation ... which letter ...??

jsut I want to know ... ?
Reply With Quote
  #14  
Old 15-03-2015, 14:42
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,754
Thanks: 2,191
Thanked 11,223 Times in 2,312 Posts
Razor12911 is on a distinguished road
like everybody said, /silent is the command for running direct x 9.0c silent without window, but with window, I don't think it is possible but google it, if it exists, you will find it. and if you just want the window to show up, leave the command space empty.
Reply With Quote
  #15  
Old 15-03-2015, 14:45
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 Razor12911 View Post
like everybody said, /silent is the command for running direct x 9.0c silent without window, but with window, I don't think it is possible but google it, if it exists, you will find it. and if you just want the window to show up, leave the command space empty.
like this

Exec2(ExpandConstant('{src}\Redist\DirectX\dxsetup .exe'),'',false);
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 10:32.


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