views:

136

answers:

2

Using the Inno installer, we distribute the VC++ redistributable with our app so we can run it automatically. We've found that running it on a system where it's already installed asks us to repair/undo the installation which is going to totally confuse users.

Is there a way around this? Maybe a flag on the installer or something?

Thanks.

+1  A: 

Try the /q flag http://support.microsoft.com/kb/227091

Kyle Alons
John
If /q doesn't do it, try /Q:a /c:"msiexec.exe /qb /i vcredist.msi"See http://jrsoftware.innosetup.free-usenet.eu/Microsoft-Visual-C-2008-Redistributable-Files-via-Inno-setup_T46582950_S1
Kyle Alons
A: 

This thread resolved my issues:

(taken from the comment in the other answer)

Tim