Results 1 to 9 of 9

Thread: How can i make Inno setup install another exe file in passive mode?

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    May 2009
    Posts
    876

    How can i make Inno setup install another exe file in passive mode?

    Hi Guy's

    is there away i can make my setup install VLC's setup file without the user having to install it seperatly, but also so that it;s not branded as VLC?

    Like have it install automatically sliently or in passive mode.

    As my program uses some of VLC's active X plugins. That dont work unless the user has VLC installed.

    Please can someone let me know?!

    Thanks!

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: How can i make Inno setup install another exe file in passive mode?

    Moved To Application Deployment

  3. #3
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: How can i make Inno setup install another exe file in passive mode?

    VLC is open source so you can edit it, but I'm not sure if you are allowed to 'debrand' it and distribute it as your own.

    Regarding silent installation, try passing the /s, /silent, /q or /quite parameter to the installer, some support that.
    Last edited by baja_yu; May 22nd, 2010 at 07:32 AM.

  4. #4

    Thread Starter
    Fanatic Member
    Join Date
    May 2009
    Posts
    876

    Re: How can i make Inno setup install another exe file in passive mode?

    Code:
    [Run]
    Filename: "msiexec.exe"; Parameters: "/q ""{app}\vlc.exe"" /quiet"
    Hi Baja,

    Would the above be the correct code?

    Thank's

  5. #5
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: How can i make Inno setup install another exe file in passive mode?

    Not sure. Where is that line from, Inno script? I'm not familiar with Inno.

    You just need one parameter of those I mentioned, but I'm not sure which, if any will work. You can try it manually first, download an installer and execute it (Start > Run) with a parameter and see if it installs silently.

  6. #6

    Thread Starter
    Fanatic Member
    Join Date
    May 2009
    Posts
    876

    Re: How can i make Inno setup install another exe file in passive mode?

    It dont seem to be working like installing anything with inno,

    I think its something to do with the fact the vlc.exe setup file has to be run as a administrator?

    Any idea how i can make inno run it as admin.

    I know you are not familiar with inno's source code's but you may have some idea?

    Cheers!

  7. #7
    Fanatic Member
    Join Date
    Mar 2009
    Posts
    739

    Re: How can i make Inno setup install another exe file in passive mode?

    Quote Originally Posted by JamieWarren09 View Post

    Any idea how i can make inno run it as admin.

    Cheers!

    In the [Setup] section of the inno script type this:-

    PrivilegesRequired=Admin

  8. #8

    Thread Starter
    Fanatic Member
    Join Date
    May 2009
    Posts
    876

    Re: How can i make Inno setup install another exe file in passive mode?

    It still doesent seem to be attempting to install it

    Do you have any other ideas on how can make it quietly install VLC?

    Thanks

  9. #9
    PowerPoster Radjesh Klauke's Avatar
    Join Date
    Dec 2005
    Location
    Sexbierum (Netherlands)
    Posts
    2,244

    Re: How can i make Inno setup install another exe file in passive mode?

    What is the script you have so far?


    If you found my post helpful, please rate it.

    Codebank Submission: FireFox Browser (Gecko) in VB.NET, Load files, (sub)folders treeview with Windows icons

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width