I have been able to merge my .msi and exe files to a single exe file using the IExpress wizard and been able to install the exe on target machines without any issues.
While i noticed the FileInformation of the exe file created using the IExpress tool , i noticed one thing that the few properties are by default like Product Name , Company name ,File Description, Copyright etc . They are using default values like Internet Explorer, Microsoft etc and can we edit these values?
Some research shows that editing sed files will help to fix this issue , and i editted the sed file by adding an extra section like this by opening on notepad
VersionInfo=VersionSection
[VersionSection]
Internalname=My.exe
OriginalFilename=mytest.exe
FileDescription=%FileDesc%
CompanyName=MyComp
ProductName=MyComp-App
LegalCopyright=@C 2015
[Strings]
FileDesc="My lovely description"
Saved the notepad and opened the exe , but changes are not reflecting . How can i do it properly ? Also do i need to share this sed file also with end users to see the proper FileInfo?