unable to remove file using WIX tool -


i trying remove file using .wxs file (wix tool) on install, not removing anything.

please check below command , let me know wrong?

<component id="comp" guid="myguid" directory="test">     <removefile id="rem1" name="*.zip" on="uninstall" /> </component> 

use removefile element on="uninstall". here's example:

<directory id="commonappdatafolder" name="commonappdatafolder">   <directory id="myappfolder" name="my">     <component id="myappfolder" guid="*">       <createfolder />       <removefile id="purgeappfolder" name="*.*" on="uninstall" />     </component>   </directory> </directory> 

hope helpful :)


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -