This script created jDiskMark-0.5.1.msi with jpackage. When I run the installer it will list a name of a msi which is not the same as the msi file I packaged and ran which is miss leading to a user.
set VERSION=0.5.1
set JPKG_EXE="C:\Program Files\java\jdk-21\bin\jpackage"
%JPKG_EXE% --type msi --input jdiskmark-v%VERSION% --main-jar jDiskMark.jar ^
--name jDiskMark-%VERSION% --app-version %VERSION% ^
--vendor "jdiskmark.net" --win-console --win-menu
In the below image the text "2a243a02.msi" is confusing because a user just double clicked a file named jDiskMark-0.5.1.msi to run the installer. It is more ideal to show the file the user launched or something else.

In the msi installer for Microsoft Orca they set this message to "Microsoft Windows" instead of the name of the MSI file being installed. I believe that is a better approach but I do not know how to set this message. What is this field called and how can I set it?
NOTE: i have tried the jpackage --description option already which does not set this message.
I am using jpackage from jdk 21 on windows 11. Any guidance is greatly appreciated.