grunzz
Posts: 2
Joined: Tue May 19, 2020 2:08 pm

Multible Software Installer/ Insall Log

Hello so iam new with Advanced Installer

I want to Build a Installer its possible to: :?:

Make a multi software installer like install software 1 then 2 then 3 ..... and to see the install is going right for very software and how to? (singel installer at the end)

possible to see what the installer doing in a window (see pic)



thanks for help
Attachments
example1.JPG
example1.JPG (48.79 KiB) Viewed 1674 times
Catalin
Posts: 6585
Joined: Wed Jun 13, 2018 7:49 am

Re: Multible Software Installer/ Insall Log

Hello and welcome to Advanced Installer forums,

Yes, it is possible to achieve what you want.

To do so, you can create a main installation package and add all the required software as prerequisites in the "Prerequisites" page.

For more information about this, please have a look over our "Creating a Professional package" article, point 7 - Add prerequisites.

Hope this helps.

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube
grunzz
Posts: 2
Joined: Tue May 19, 2020 2:08 pm

Re: Multible Software Installer/ Insall Log

Hello yes i now this Tutorial

The Question is look at the pic from the example from Microsoft installer that is what iam mean to show it like in this picture?

and its possible to show after the installer is finish the install log to see all are correct install?

thanks for help
Catalin
Posts: 6585
Joined: Wed Jun 13, 2018 7:49 am

Re: Multible Software Installer/ Insall Log

Hello,

I am not quite sure if it's possible to achieve the same behavior as the Microsoft Installer.
and its possible to show after the installer is finish the install log to see all are correct install?
Yes, this is possible. In order to create an installation log, you can start the installation package with the following command line:

MSI:

Code: Select all

msiexec.exe /i <path_to_msi> /L*V <path_to_log>
EXE:

Code: Select all

setup.exe /L*V <path_to_log>
For more information about this, please have a look over the "How do I create an installation log?" article.

Hope this helps.

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”