Hi,

Even am also new to this :(

Windows installer will automatically take care for
installation/uninstallation

Command: msiexec /x xxxx.msi

The above command you can run from command prompt(where your msi is placed.
For example if it is in C drive, then C:\msiexec /x xxx.msi). Custom action
is not required for installation/uninstallation

Hope this clears.


ramya ragupathy wrote:
> 
> Hi
> am new to wix and i need ur help in knowing how to 
> code for uninstallation in wix..coul u pls guide me through 
> the uninstallation process in wix?
> i tried uninstalling by using the command msiexec /x in a custom action
> and i had an error poping up
> 
> 
> TIA
> ramya
> 
> 
> 
> SaiTeja wrote:
>> 
>> 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-tp14294476p15351441.html
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to