VMware Cloud Community
GulzarA
Contributor
Contributor

Add button with text "Show Logs" after Post installation final page action to open the log folder

I want to add button with text "Show Logs" after post installation final page action, when user clicks, it will open the folder which contains installer logs. is it possible to do this?

0 Kudos
1 Reply
michieldhont_
Hot Shot
Hot Shot

You can add an action to the final page actionList and open explorer with the "explorer command"

   <finalPageActionList>
     ...
     <runProgram>
       <progressText>Show logs</progressText>
       <program>explorer</program>
       <programArguments>/path/to/logs</programArguments>
     </runProgram>
     ...
   </finalPageActionList>

 

 The finalPageActionList shows the users a set of actions they can choose to execute at the end of the installation.