This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- ARPSYSTEMCOMPONENT property not exist in Property table
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Feb 23, 2011
09:15 AM
ARPSYSTEMCOMPONENT property not exist in Property table
Hi I am making a setup of basic MSI type. after successfully building the setup, I saw that there are two entries of my application in add remove programs.
To remove the entry from I should make the ARPSYSTEMCOMPONENT property set to 1, but I did not find the entry in the property table.
What can be the reason behind the dual entry and non existence of ARPSYSTEMCOMPONENT property in the property table?
All what I want is to have a single entry in add remove programs
To remove the entry from I should make the ARPSYSTEMCOMPONENT property set to 1, but I did not find the entry in the property table.
What can be the reason behind the dual entry and non existence of ARPSYSTEMCOMPONENT property in the property table?
All what I want is to have a single entry in add remove programs
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Feb 28, 2011
06:05 AM
Hi, to help with some logic behind this;
Windows Installer by default will create an ARP entry for each MSI installed.
If you have ARPSYSTEMCOMPONENT set to 1, the default ARP entry will still be created but will be 'hidden' and not appear in the ARP list.
The usual reasons you would set the ARPSYSTEMCOMPONENT property are either..
a) you don't want an entry to appear in the ARP list, or
b) you want to customise the handling of the uninstallation of your application.
If you wanted option b), you would achieve this via setting the ARPSYSTEMCOMPONENT (to hide the default ARP entry) and add your own registry entries that would create your custom ARP entry.
If you were then to remove the ARPSYSTEMCOMPONENT property from the above example, you will end up with your custom ARP entry and also the default windows installer ARP entry - two ARP entries!
More than likely you also have custom ARP entries being set in your registry table;
check your registry table for keys being created to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
If they exist, you can either take them out and let Windows Installer handle the ARP entry, or if they are required add the property ARPSYSTEMCOMPONENT=1 to hide the default entry.
As for reason why Installshield has built your project like this - I can't answer as for a basic MSI type it should normally go with the default Windows Installer ARP behaviour.
Windows Installer by default will create an ARP entry for each MSI installed.
If you have ARPSYSTEMCOMPONENT set to 1, the default ARP entry will still be created but will be 'hidden' and not appear in the ARP list.
The usual reasons you would set the ARPSYSTEMCOMPONENT property are either..
a) you don't want an entry to appear in the ARP list, or
b) you want to customise the handling of the uninstallation of your application.
If you wanted option b), you would achieve this via setting the ARPSYSTEMCOMPONENT (to hide the default ARP entry) and add your own registry entries that would create your custom ARP entry.
If you were then to remove the ARPSYSTEMCOMPONENT property from the above example, you will end up with your custom ARP entry and also the default windows installer ARP entry - two ARP entries!
More than likely you also have custom ARP entries being set in your registry table;
check your registry table for keys being created to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
If they exist, you can either take them out and let Windows Installer handle the ARP entry, or if they are required add the property ARPSYSTEMCOMPONENT=1 to hide the default entry.
As for reason why Installshield has built your project like this - I can't answer as for a basic MSI type it should normally go with the default Windows Installer ARP behaviour.