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
- :
- Re: Application not listed Add/Remove programs list for a normal Vista User
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 07, 2008
10:00 AM
Application not listed Add/Remove programs list for a normal Vista User
I install an application under Vista requiring Administrator privileges.
After this installation the installed program is working fine for Normal Level users and Admin Level users.
The problem is in Add/Remove Program List:
When I logged in as a normal user the application is not listed in the Add/Remove Program List. However, when I logged in as an administrator the application is listed.
Does anyone have an idea what might be causing this?
Thanks,
After this installation the installed program is working fine for Normal Level users and Admin Level users.
The problem is in Add/Remove Program List:
When I logged in as a normal user the application is not listed in the Add/Remove Program List. However, when I logged in as an administrator the application is listed.
Does anyone have an idea what might be causing this?
Thanks,
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 07, 2008
02:29 PM
Did you select "Only for me" on your Customer Information dialog box, ofcourse i am assuming that you installed your app when you were logged in as an Admin.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 08, 2008
03:09 AM
No I did not select that option.
Actually, who is installing the application does not change the behaviour. All the time the Admin Add/Remove list show the program while User Add/Remove list is hiding it.
Moreover, both users can run the application.
I am installing this application (a basic MSI setup) by calling its setup.exe from another installer (InstallScript project) with the following command:
LaunchAppAndWait (DIR,"/L" + selectedLanguageCode + " /s /v\"/qb-! ADDLOCAL=ALL",LAAW_OPTION_WAIT_INCL_CHILD);
If I run this setup seperately the application is listed in both Add/Remove lists.
I don't understand why it is behaving differently 😞
Thank you,
Actually, who is installing the application does not change the behaviour. All the time the Admin Add/Remove list show the program while User Add/Remove list is hiding it.
Moreover, both users can run the application.
I am installing this application (a basic MSI setup) by calling its setup.exe from another installer (InstallScript project) with the following command:
LaunchAppAndWait (DIR,"/L" + selectedLanguageCode + " /s /v\"/qb-! ADDLOCAL=ALL",LAAW_OPTION_WAIT_INCL_CHILD);
If I run this setup seperately the application is listed in both Add/Remove lists.
I don't understand why it is behaving differently 😞
Thank you,
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 08, 2008
09:40 AM
mcilis wrote:
No I did not select that option.
Actually, who is installing the application does not change the behaviour. All the time the Admin Add/Remove list show the program while User Add/Remove list is hiding it.
Moreover, both users can run the application.
I am installing this application (a basic MSI setup) by calling its setup.exe from another installer (InstallScript project) with the following command:
LaunchAppAndWait (DIR,"/L" + selectedLanguageCode + " /s /v\"/qb-! ADDLOCAL=ALL",LAAW_OPTION_WAIT_INCL_CHILD);
If I run this setup seperately the application is listed in both Add/Remove lists.
I don't understand why it is behaving differently 😞
Thank you,
You seems to be doing everything right..however read following article this might help
http://msdn.microsoft.com/en-us/library/aa368032(VS.85).aspx
HTH
Good Luck!
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 08, 2008
09:55 AM
Also on a side note take a look at reg entry AuthorizedLUAApp that is part of Product Code under HKEY_CLASSES_ROOT\Installer\Products\
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 09, 2008
08:11 AM
Thank you for your help...
I solved this problem by considering your first comment.
I am calling this setup by silent installation threfore the execute sequence was running and the Customer information dialog box was not selected.
Therefore the installation was done for only the Administrator not all users.
I add ALLUSERS property to the Property table with the value "1" and the problem is gone.
I solved this problem by considering your first comment.
I am calling this setup by silent installation threfore the execute sequence was running and the Customer information dialog box was not selected.
Therefore the installation was done for only the Administrator not all users.
I add ALLUSERS property to the Property table with the value "1" and the problem is gone.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 09, 2008
10:16 AM
mcilis wrote:
Thank you for your help...
I solved this problem by considering your first comment.
I am calling this setup by silent installation threfore the execute sequence was running and the Customer information dialog box was not selected.
Therefore the installation was done for only the Administrator not all users.
I add ALLUSERS property to the Property table with the value "1" and the problem is gone.
I am glad I could help, however for future silent installation, take a look at .ISS files under help.
:-)))