Reputation: 2470
I have a product msi, and it is installed as user level i.e. AAUSERS property is set to zero in MSI property table. This is a very old product and its already released. As its installed User specific, i can not see the product name in the Add/Remove program list of other users on same machine.
Is there any way like registry setting modification that i can do on one user which will make my product name to appear on Add/Remove program list of all users on the same machine?
Upvotes: 0
Views: 146
Reputation: 20780
No, you can't do this. The whole point is that users have their own environment, and part of that is that they do not see other peoples Add/Remove entries or anything else (such as per user COM classes) that belong to other users. If another user has admin privilege there are tools that can find everything that's installed using APIs like MsiEnumProductsEx () and passing the other user's SID.
Upvotes: 1