I have a wix installer which copies application dlls and installs a windows service. It also creates shortcuts in programs menu (one for the app and one for uninstall process). Shortcut for uninstall looks like the following:
<Shortcut Id="UninstallProduct"
Name="Application"
Target="[SystemFolder]msiexec.exe"
Arguments="/x [ProductCode]" />
Application is installed correctly, but when I try to uninstall it by the shortcut something is going wrong. All folders and files created by installer are being removed but when I enter add/remove programs menu I see entry for my application (need to remove it from context menu - it removes application completely).
What can be wrong with unistall shortcut? How to force it to remove application from the system?
All guids (for product, components) are created like this: Guid="*"