Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I customize the installation path using the exe generated by Inno? #378

Open
Krehizi opened this issue Mar 31, 2020 · 1 comment
Open

Comments

@Krehizi
Copy link

Krehizi commented Mar 31, 2020

Current default installation path : C:\Users\xxxxx\AppData\Local.
Whether there is a property in the configuration that specifies the installation path of the inno program?or let the user customize the path?
thanks!

@FibreFoX
Copy link
Member

It is possible to change this behavior, which comes from InnoSetup and the templates.

You can enable it for the user by setting <installdirChooser> to true, like this:

            <plugin>
                <groupId>com.zenjava</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>8.8.3</version>
                <configuration>
                    <mainClass>com.zenjava.test.Main</mainClass>
                    <verbose>true</verbose>
                    <bundleArguments>
                        <installdirChooser>true</installdirChooser>
                    </bundleArguments>
                </configuration>
            </plugin>

(I know this is an old issue, sorry, starting to get up to speed with the issues here again)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants