VMware Cloud Community
clairealex7
Enthusiast
Enthusiast

launch browser at the end of the installation

Hello,

We would like to offer the user to click on a link at the end of the installation. This link will open a page in a browser with "getting started" information for the product.

I am not using the InstallBuilder for qt, just the regular InstallBuilder. The platform is only Windows for now.

From reading the documentation, I do not see how I could do this.

Is it a possible thing to do?

Thank you

Claire

0 Kudos
1 Reply
michieldhont_
Hot Shot
Hot Shot

Hi @clairealex7,

You can prompt the user to execute actions in the <finalPageActionList> and then use the <launchBrowser> action. For example:

<finalPageActionList>
    <progressText>Open browser</progressText>
    <launchBrowser>
      <url>http://www.yoursite.com</url>
    </launchBrowser>
</finalPageActionList>

 

Regards,

Michiel

0 Kudos