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: msi not registered with add/remove program or creating shortcuts after installation
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
‎Apr 24, 2009
12:07 PM
msi not registered with add/remove program or creating shortcuts after installation
I am trying to push out an msi using SCCM. The status reported successful, but for some reason it's not showing in the add/remove program or creates a shortcut on the desktop if I use SCCM to push it out. I look at the local drive and it looks like all the files are copied properly and registry enties are added correctly.
But if I manually run the same script after I've logon with my account which is part of local admin group then it's showing in the add/remove program.
But if I manually run the same script after I've logon with my account which is part of local admin group then it's showing in the add/remove program.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 24, 2009
03:04 PM
You probably made a SCCM program with a commandline like:
msiexec /i "name.msi" /qn
with running it in the system context? right?
Then you should add or change the property:
ALLUSERS=1
to the property table.
reg, Henno.
msiexec /i "name.msi" /qn
with running it in the system context? right?
Then you should add or change the property:
ALLUSERS=1
to the property table.
reg, Henno.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 24, 2009
05:11 PM
I tried both ALLUSERS = 1 and ALLUSERS=2 but getting the same result.