WinGetYamlGenerator icon indicating copy to clipboard operation
WinGetYamlGenerator copied to clipboard

Browse to MSI and import information

Open jvintzel opened this issue 4 years ago • 1 comments

MSI can easily import the information to populate a good amount of the fields.

jvintzel avatar May 21 '20 17:05 jvintzel

Deriving metadata from the installer also works for EXE installers. E.g. if it is a PE64 file, you know that the architecture must be x64. Name, copyright, version and description metadata you may get from the VERSIONINFO resource (file properties in Windows Explorer, FileInfo.VersionInfo in .NET). There should also be ways to automatically detect the installer type from the binary (NSIS, Inno, etc.).

One downside is that this metadata may not always be accurate, e.g. I have seen lots of software where the version number of the installer binary does not match the actual product version.

chausner avatar May 21 '20 22:05 chausner