cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
TurboFisch
Level 7

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,
Labels (1)
0 Kudos
(2) Replies
TurboFisch
Level 7

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"?
0 Kudos
DLee65
Level 13

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]
0 Kudos