Oct 29, 2021
11:19 PM
We have tried by using msi file of Crystal Report Runtime 13 but it didn't worked for us. Then we tried by using the exe file of the same. It worked but it requires user interaction to install but I want silent installation.
... View more
Oct 27, 2021
01:20 AM
Hi, I have a InstallShield Installer project. We are using InstallShield 12. I want to install Crystal Report Runtime version 13 along with it as it is needed for my software. I've written the code to install it but it popups with a user interface and doesn't install until user proceeds it. I want to install it silently without user interaction. I also tried to make Response file through Command Prompt but failed. This is the code I'm using: RegDBSetDefaultRoot(HKEY_LOCAL_MACHINE); if RegDBKeyExist ("SOFTWARE\\WOW6432Node\\SAP BusinessObjects\\Crystal Reports for .NET Framework 4.0\\Crystal Reports") > 0 then RegDBGetKeyValueEx("SOFTWARE\\WOW6432Node\\SAP BusinessObjects\\Crystal Reports for .NET Framework 4.0\\Crystal Reports","CRRuntime32Version",nvType,svCRRuntime32Version,nvSize); MessageBox ("svCRRuntime32Version = " + svCRRuntime32Version, INFORMATION); if (svCRRuntime32Version != "") then MessageBox("The CR 13 is already installed on the current system.", INFORMATION); else szApplicationPath = svLocalDestDir^"Crystal Reports\\CRRuntime_32bit_13_0_18.exe"; LongPathToQuote( szApplicationPath, TRUE ); SdShowMsg ("Installing MediMizer Crystal Report Runtime v13", TRUE); nResult=LaunchAppAndWait(szApplicationPath,"/S /v/qn",LAAW_OPTION_WAIT); SdShowMsg ("", FALSE); endif; endif;
... View more
Labels
- Labels:
-
InstallShield
Latest posts by MediMizer
Subject | Views | Posted |
---|---|---|
756 | Oct 29, 2021 11:19 PM | |
784 | Oct 27, 2021 01:20 AM |
Activity Feed
- Posted Re: How to silently install Crystal Report RunTime version 13 through my InstallShield Installer? on InstallShield Forum. Oct 29, 2021 11:19 PM
- Posted How to silently install Crystal Report RunTime version 13 through my InstallShield Installer? on InstallShield Forum. Oct 27, 2021 01:20 AM