-
Notifications
You must be signed in to change notification settings - Fork 26
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
Vendor setting has no effect? #259
Comments
I believe the vendor is only set in the application, not in the installer. The jpackage documentation isn't very clear on this though. |
Thanks for answering. But which effect then has specifying |
I apologize, the vendor is actually only set in the installer and not in the application. You can verify that it is being set by appending the argument |
I found out where to set these jpackage parameters:
But only the `appVersion``` parameter seems to have any effect (appears as suffix of the exe-file and in the application installer entry in the Windows apps list) |
I create an jpackage {
skipInstaller = false
installerType = "msi"
imageOptions = listOf(
"--app-version", "1.0.0",
)
installerName = msiInstallerBaseName
installerOptions = listOf(
"--vendor", "Ewert Technologies",
"--win-dir-chooser",
"--win-menu",
"--win-shortcut",
"--win-shortcut-prompt",
other installer options...
)
} Then, in the installer I also see Ewert Technologies listed in the Windows app list. |
It seems that the vendor can be set in both ways as shown above. But I dont't see the vendor in the Windows app list (Windows 10 Pro, 22H2). While we are at it: Do you know what has to be done such that the Windows installer knows the publisher and the security popup doesn't show "Publisher: Unknown"? |
I've seen that vendor problem for Windows 10 before. It does, however, seem to work on Windows 11. I'm not totally sure, but I think the "Verified Publisher" that is displayed in the Security prompt comes from the signing certificate that was used to sign the |
In my build.gradle, I set the vendor property, however in the generated installer I do not see it anywhere. Is this a bug?
The text was updated successfully, but these errors were encountered: