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

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #856  
Old 20-09-2012, 01:28
Th3Raven's Avatar
Th3Raven Th3Raven is offline
Registered User
 
Join Date: Mar 2012
Location: Romania
Posts: 90
Thanks: 57
Thanked 54 Times in 33 Posts
Th3Raven is on a distinguished road
Send a message via Yahoo to Th3Raven
Quote:
Originally Posted by yener90 View Post
normally it should...try it out.
It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results.
Sponsored Links
  #857  
Old 20-09-2012, 02:05
amin fear amin fear is offline
Registered User
 
Join Date: Feb 2012
Location: Inferno
Posts: 102
Thanks: 86
Thanked 57 Times in 30 Posts
amin fear is on a distinguished road
Quote:
Originally Posted by Th3Raven View Post
It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results.
Proper Arg For [Run] Section Of Inno Setup :

Code:
[Run]
Filename: "msiexec.exe"; Parameters: "/i ""{tmp}\Setup.msi"""


Silent Setup
[Run]
Filename: "msiexec.exe"; Parameters: "/q /i ""{tmp}\Setup.msi""";
Not Tested On Yener90 CI ... But Works on usual Inno Setups ...
  #858  
Old 20-09-2012, 02:13
amin fear amin fear is offline
Registered User
 
Join Date: Feb 2012
Location: Inferno
Posts: 102
Thanks: 86
Thanked 57 Times in 30 Posts
amin fear is on a distinguished road
Quote:
Originally Posted by thedarkman View Post
Hi yener90,

msiexec.exe support with your script? because i want make installer with silent install steam & physx, thanks
You can create Silent Installs From MSIs by using the " SFX Maker " Program ...

after that use the compiled exe setup in CI ...
  #859  
Old 20-09-2012, 03:24
thedarkman's Avatar
thedarkman thedarkman is offline
Registered User
 
Join Date: Dec 2010
Location: Anywhere i want
Posts: 19
Thanks: 2
Thanked 0 Times in 0 Posts
thedarkman is on a distinguished road
Quote:
Originally Posted by amin fear View Post
You can create Silent Installs From MSIs by using the " SFX Maker " Program ...

after that use the compiled exe setup in CI ...
wow.. this is what i need, thanks
  #860  
Old 20-09-2012, 21:04
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Suggestion for the next CI (If Possible)
1 - Pause extraction time when no extracting. (Ex: when requesting disk).
2 - Allow click on buttons when installing Redist.
3 - Allow play the video again (add a button to switch between video and slides).
  #861  
Old 22-09-2012, 08:26
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Quote:
Originally Posted by LuisCésar82 View Post
Suggestion for the next CI (If Possible)
1 - Pause extraction time when no extracting. (Ex: when requesting disk).
2 - Allow click on buttons when installing Redist.
3 - Allow play the video again (add a button to switch between video and slides).
1. Ok this really difficult.
2. Also difficult -> launching files without using launching feature.
3. Please tell me: HOW??
what you imagine??
Everybody has wishes, but without any imaginations.
currenlty video will be played one time, then automaticly will switch to slideshow.
if i add your feature -> always video playing or always slideshow without stopping, someone else get upset about this.
  #862  
Old 22-09-2012, 08:30
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
UPDATE 8.5.6.7
- fixed text problem in directory selection page
- added arabic support
  #863  
Old 22-09-2012, 08:31
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
yener, your CI is amazing period. You cant possibly include everyone's wishes. but for #3 instead of play video once, you could set it to loop indefinately? That way IF a person wants video played they can leave the avi in setup.cab, if not delete it & have just slideshow.
  #864  
Old 22-09-2012, 08:34
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
yener, your CI is amazing period. You cant possibly include everyone's wishes. but for #3 instead of play video once, you could set it to loop indefinately? That way IF a person wants video played they can leave the avi in setup.cab, if not delete it & have just slideshow.
first version was like that
but it get to the nerves of some.
me too
always seeing same scene again and again and again...
  #865  
Old 22-09-2012, 08:58
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 Th3Raven View Post
It doesn't(or maybe i haven't found the correct LaunchArg for .msi )
I fave tried for Physx with all the LaunchArg, but with no results.
from mass effect 3 which has physx installed

Launch6=Physx
Launch664=0
LaunchCom6=Redist\physx\redist\PhysX-9.11.1107-SystemSoftware.msi
LaunchArg6=/q:a

just change the Launch6 to whatever number you need in setup.ini, also the physx version number too.

the biggest issue with msi installer is that it doesnt always uninstall older version before trying to install new version
and that may be why it doesnt work properly.

Last edited by pakrat2k2; 22-09-2012 at 09:00.
  #866  
Old 22-09-2012, 09:30
Th3Raven's Avatar
Th3Raven Th3Raven is offline
Registered User
 
Join Date: Mar 2012
Location: Romania
Posts: 90
Thanks: 57
Thanked 54 Times in 33 Posts
Th3Raven is on a distinguished road
Send a message via Yahoo to Th3Raven
Quote:
Originally Posted by pakrat2k2 View Post
from mass effect 3 which has physx installed

Launch6=Physx
Launch664=0
LaunchCom6=Redist\physx\redist\PhysX-9.11.1107-SystemSoftware.msi
LaunchArg6=/q:a

just change the Launch6 to whatever number you need in setup.ini, also the physx version number too.

the biggest issue with msi installer is that it doesnt always uninstall older version before trying to install new version
and that may be why it doesnt work properly.
thank you for this suggestion and also thx amin fear for his.
i will try both to see witch one works.
  #867  
Old 22-09-2012, 19:38
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
yener90 With reference to my previous suggestion:
3 - Allow play the video again (add a button to switch between video and slides).
I mean if someone wants to repeat the video, have a button to repeat.
As this base: Video after slides is perfect.
If I knew programming, I could create my own script. But what I know is just for curiosity (I have no course).
Do not know if you've ever tested, but from what I read so far, it is possible to add cursor.cur.
I tested creating a Cursor.ani (Animated Cursor) and it worked perfectly. I created the animated cursor and then just had to change the extension to cursor.ani cursor.cur.
I think this may be included in the script (If there cursor.ani use as cursor).
In CI Designer 0.4a after you close and reopen the program, the part where the buttons move the label not being reloaded ini file (temp folder). Back to default.
Reason I'm posting here is simply to suggest improvements in its optimum work yener90.
  #868  
Old 24-09-2012, 21:53
Ozzy1911 Ozzy1911 is offline
Registered User
 
Join Date: Aug 2011
Location: in my home?
Posts: 4
Thanks: 1
Thanked 0 Times in 0 Posts
Ozzy1911 is on a distinguished road
Could someody help me out with this?

Whenever i'm using i.e. Peterf's or some else command line packing. my freearc archive ends up having all the files outside the folders. And when it unpacks the files, no mather if i do it manually or by installation, it gets messed up.
  #869  
Old 25-09-2012, 14:54
yener90 yener90 is offline
Registered User
 
Join Date: Nov 2008
Location: Away
Posts: 810
Thanks: 93
Thanked 1,093 Times in 217 Posts
yener90 is on a distinguished road
no it doesnt.

IMPORTANT UPDATE 8.5.6.8
- NetFramework independent CI
- Cryptor is no more NetFramework based
-> converted completely to pascal
  #870  
Old 25-09-2012, 16:08
kassane's Avatar
kassane kassane is offline
Registered User
 
Join Date: Nov 2011
Location: Somewhere in the World
Posts: 174
Thanks: 578
Thanked 117 Times in 47 Posts
kassane is on a distinguished road
Quote:
Originally Posted by yener90 View Post
no it doesnt.

IMPORTANT UPDATE 8.5.6.8
- NetFramework independent CI
- Cryptor is no more NetFramework based
-> converted completely to pascal
Yener90, this new version is slow to open!
I'm testing it, if I find a problem I notice!
The previous version would open normally, but not this...
Closed Thread


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 - Questions Here REV0 Conversion Tutorials 1565 29-11-2024 09:51
Inno Setup: Additional Libraries altef_4 Conversion Tutorials 50 21-10-2020 09:59
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Help- How to extract a .bin file compressed by a code ? Adonix Conversion Tutorials 22 22-03-2015 15:02
yener90's older Inno Project Source Codes THADEADMAN2011 PC Games - CD/DVD Conversions 0 16-06-2012 03:40



All times are GMT -7. The time now is 12:00.


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