- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Sep 01, 2014
12:06 AM
downgrade doesn't work all the time
downgrade doesn't work all the time. Any ideas on how to fix this?
Basically, some files don't install. It look like "FindRelatedProducts" is failing.
Any ideas on what to look for?
Thanks,
Basically, some files don't install. It look like "FindRelatedProducts" is failing.
Any ideas on what to look for?
Thanks,
2 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Oct 06, 2014
06:59 PM
I've figured out that if I use the "repair" button, my installs will be fixed. Is there standard custom action that will just do the "repair"?
- Mark as New
- Subscribe
- Mute
- Permalink
- Email to a Friend
- Report Inappropriate Content
Oct 08, 2014
06:55 AM
There isn't any standard custom action to do this. You could setup a custom action yourself from a command line to execute the msiexe with the repair flags though. I guess in your case you know the product code for the app and so can just specify the repair flag with the product code GUID.
[CODE]Repair Options
/f[p|e|c|m|s|o|d|a|u|v]
Repairs a product
p - only if file is missing
o - if file is missing or an older version is installed (default)
e - if file is missing or an equal or older version is installed
d - if file is missing or a different version is installed
c - if file is missing or checksum does not match the calculated value
a - forces all files to be reinstalled
u - all required user-specific registry entries (default)
m - all required computer-specific registry entries (default)
s - all existing shortcuts (default)
v - runs from source and recaches local package[/CODE]
[CODE]Repair Options
/f[p|e|c|m|s|o|d|a|u|v]
Repairs a product
p - only if file is missing
o - if file is missing or an older version is installed (default)
e - if file is missing or an equal or older version is installed
d - if file is missing or a different version is installed
c - if file is missing or checksum does not match the calculated value
a - forces all files to be reinstalled
u - all required user-specific registry entries (default)
m - all required computer-specific registry entries (default)
s - all existing shortcuts (default)
v - runs from source and recaches local package[/CODE]
