Windows Installer only removes files that were installed (and were not
marked Permanent). It only deletes folders that are empty. If your
application creates files in those folders and you want to ensure that they
are deleted when you uninstall the application, use appropriate RemoveFile
elements to describe the files to be removed.

-- 
Mike Dimmick

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of SaiTeja
Sent: 12 December 2007 12:53
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] UnInstalling


Hi,

My INSTALDIR refers to C:\Program Files\Test Program\Client

Client Folder has, Some files and One folder with one file

While uninstalling, all files in Client are deleted properly. But Folder is
not deleted.

After uninstalling, In my program files "Test Program Folder, Inside Client
Folder, Inside Another folder with file" are left. 

Following is my Execute sequence

   <InstallExecuteSequence>
     <InstallValidate Sequence="1400" />
     <RemoveExistingProducts Sequence="1499" />
      <InstallInitialize Sequence="1500" />
     <RemoveRegistryValues Sequence="2600" />
      <UnregisterClassInfo Sequence="2700" />
      <RemoveFiles Sequence="3500" />
      <RemoveFolders Sequence="3600" />
      <CreateFolders Sequence="3700" />
      <MoveFiles Sequence="3800" /> 
   </InstallExecuteSequence>

can any one tell  what is the problem here

-- 
View this message in context:
http://www.nabble.com/UnInstalling-tp14294476p14294476.html
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to