I am using wix to create the setup file. After installation I want to create an uninstall file so that the user can delete the program. I followed the steps in this link but without success. I am implementing as below. The Setup project compiles and installs without any problems. But I can't see the delete shortcut it created in the application folder. What is the point I missed?
Please let me know if you need more details.
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="Application Name">
<Directory Id="en" Name="en" />
<Directory Id="tr" Name="tr" />
<Directory Id="ar_DZ" Name="ar-DZ" />
<Directory Id="cs" Name="cs" />
<Directory Id="cs_CZ" Name="cs-CZ" />
<Directory Id="de" Name="de" />
<Directory Id="fr" Name="fr" />
<Directory Id="fr_FR" Name="fr-FR" />
<Directory Id="pt" Name="pt" />
<Directory Id="pt_BR" Name="pt-BR" />
<Directory Id="Ru" Name="Ru" />
<Directory Id="ru_ru" Name="ru-ru" />
<Directory Id="uz_Latn_UZ" Name="uz-Latn-UZ" />
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="Application Name"/>
</Directory>
</Directory>
</Fragment>
<Fragment>
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="ApplicationShortcut" Guid="*">
<Shortcut Id="UninstallProduct"
Name="Uninstall Application Name"
Description="Uninstalls Application Name"
Target="[System64Folder]msiexec.exe"/>
<RemoveFolder Id="WindowsFolder" On="uninstall"/>
</Component>
</DirectoryRef>
</Fragment>