Show Product Version column with the msi file in windows explorer

大兔子大兔子 提交于 2019-12-02 05:16:59

问题


I have an msi which is developed using wix. CustomAction in wix project triggers a Winform UI.

<Product Id="*" Name="App" Language="1033" Codepage="UTF-8" Version="10.10.10.10" Manufacturer="Corporation" UpgradeCode="{Your app Upgrade code}">

So in C# winform, i am able to get the ProductVersion (from above code in wix project .wxs file) in winform. I want to know that how can i show that product version with the msi file in Windows Explorer. Please help, Thanks in advance.


回答1:


Windows Explorer can only see attributes in the Summary Information Stream. ProductVersion is in the Property table. The best you could do is append (duplicate) the product version in one of the Summary Information Stream attributes such as Product Name or Description.



来源:https://stackoverflow.com/questions/45934344/show-product-version-column-with-the-msi-file-in-windows-explorer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!