Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

REINSTALL=ALL


1 reply to this topic

trutmrol

trutmrol
  • Members
  • 94 posts

Posted 01 October 2002 - 08:08

Hi, I won't to write a Custom Action to set der installing parameter 'REINSTALL=ALL' when the product exist!



//----------------------------------------------------------
function SetInstallParameter(hMSI)  
LONG    nvRuntimeMode;  
NUMBER  nvReturn;
begin  
  nvReturn = MsiGetProperty(hMSI,nvRuntimeMode);
  if (nvRuntimeMode == MSIRUNMODE_MAINTENANCE) then  
    //Set REINSTALL=ALL
    Msi???????(......); :(      
   endif;
end;
//----------------------------------------------------------
Any help is greatly appreciated,
Roland
Thanks, Roland

trutmrol

trutmrol
  • Members
  • 94 posts

Posted 02 October 2002 - 08:37

It's work!   :)

look at http://www.installsi.../Upgrading.html
Thanks, Roland