Edit Package Resources¶
When compiling a package, Paquet Builder generates a single executable file (PE format) ready for distribution. Windows executable files often include a resource section that stores metadata such as version information, icons, and string tables. This page enables you to customize these resources, allowing you to insert your logo, copyright details, and more.
Package Icon Path¶
Replace the default icon of the package executable with your own custom icon by specifying the path to a true icon file (.ico
). Paquet Builder supports icons of various sizes and color depths, such as 32x32, 16 colors or 48x48, 256 colors.
If you need to create or extract icons, consider using GConvert, which allows you to easily extract icons or convert images into icons.
Uninstaller Icon Path¶
Specify the icon file to replace the default icon of the uninstaller EXE file.
Version Information¶
Executable files can include a version information resource section that contains details such as version numbers, operating system compatibility, copyright information, and more. This information is embedded in the compiled file, and users can access it by right-clicking the program icon and selecting Properties, or by pressing ALT+ENTER in Windows Explorer.
Fields for Version Information:¶
- Package Description: A brief description of the package contents.
- Uninstaller Description: A description for the uninstaller.
- File Number: The release number of the package in the format
X.X.X.X
, whereX
is an integer (e.g.,1.20.34.45
). - Product Number: The version number of the product in the format
X.X.X.X
. This can match the File Number (e.g.,1.22.33.44
). - Trademarks: Enter any trademarks associated with your company or leave this field blank to exclude it.
- Copyright, Company Name, and Product Name: These fields are populated based on the Basic Information page.
By customizing these resources, you ensure your package reflects your brand and product identity while providing users with essential metadata.