Wix installer does not overwrite previous version of an executable

后端 未结 3 539
悲哀的现实
悲哀的现实 2020-12-31 11:24

I have a very simple installer - copy a single dll to a Program Files subfolder and register it with regsvr32.exe. Works great, but if an older version of the dll is install

3条回答
  •  死守一世寂寞
    2020-12-31 11:51

    Short answer (the other one became too messy): try removing this line and let the package ID be auto generated by setting it to "*":

     
    

    Note that you must stop using all previous MSI builds after uninstalling them all. This is due to the faulty hard coded package guid which can cause unpredictable and unforeseen problems.

提交回复
热议问题