Jan 13, 2015
03:43 AM
Hello, I need to get the time zone information of the System and to store the same in registry as part of our product development. Is there any simple wat to get it. Thanks, Jagadish.
... View more
Labels
- Labels:
-
InstallShield 2013
Jul 23, 2014
03:58 AM
Are you referring about SdStartCopy2?
... View more
Jul 22, 2014
08:53 AM
Write below code before using SdShowMsg() Enable(DIALOGCACHE); This will enable your main dialogbox.
... View more
Jul 22, 2014
08:50 AM
If your installer is 32-bit, the package gets installed in programfiles(x86). If you want to install it in programfiles, rebuild your installation kit as 64-bit installer.
... View more
Jul 22, 2014
08:48 AM
Open your dialogbox and set the option "Cancel" to TRUE. Otherwise, write Enable(CANCELBUTTON) in the function:OnMaintUIBefore() function.
... View more
Jul 22, 2014
08:44 AM
If its COM, .NET dll, Please try below: LaunchAppAndWait("Regasm.exe ",sztlbpath,LAAW_OPTION_HIDDEN); Write the below code, before executing LaunchAppAndWait(). where sztlbpath, where your tlb file is being generated, nReturn = DetermineBitVersionofOS(); //write function definition to deteremine your OS. if nReturn = 1 then szNetFramework = "C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727"; ChangeDirectory(szNetFramework); else szNetFramework = "C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727" ; ChangeDirectory(szNetFramework); //MessageBox("szNetFramework is : "+szNetFramework ,INFORMATION); endif;
... View more
Jul 22, 2014
08:37 AM
Finally I got some solution. Its not that much difficult. set BATCH_INSTALL = TRUE in your OnFirstUIBefore() function. Then you can write your logic in OnRebooted() function.
... View more
Jul 07, 2014
09:20 AM
Hello There, Is there any way to call LaunchAppAndWait after rebooting system. here is the sample code: if ( FindAllFiles ( WindowsFolder ^ "Microsoft.NET" ^ "Framework", "regasm.exe", svResult, RESET ) == 0 ) then svPath = INSTALLDIR ^ "xxx" ^ "xxx"^ "obj.dll /codebase /tlb"; MessageBox("svpath : "+svPath,INFORMATION); LongPathToQuote ( svPath, TRUE ); if (LaunchAppAndWait ( svResult, svPath, WAIT ) < 0) then MessageBox (" Unable to launch " + svPath + ".", SEVERE); endif; endif; I wanted to generate tlb file for a .NET dll. How it is prossible? Please suggest. NOTE: I do not want to use "RunOnce" as the dll file resides in INSTALLDIR. I cant hardcode the dll path in a batch file. Thanks in advance, //Jag
... View more
- Tags:
- install script
- reboot
Labels
- Labels:
-
InstallShield 2013
Latest posts by jagadish0911
Subject | Views | Posted |
---|---|---|
1281 | Jan 13, 2015 03:43 AM | |
1132 | Jul 23, 2014 03:58 AM | |
1263 | Jul 22, 2014 08:53 AM | |
3072 | Jul 22, 2014 08:50 AM | |
1132 | Jul 22, 2014 08:48 AM | |
689 | Jul 22, 2014 08:44 AM | |
684 | Jul 22, 2014 08:37 AM | |
6205 | Jul 07, 2014 09:20 AM |
Activity Feed
- Posted Reg. Timezone in Installshield 2013 on InstallShield Forum. Jan 13, 2015 03:43 AM
- Posted Re: Cancel button is disabled during tranfer phase of MODIFY or REMOVE wizards. on InstallShield Forum. Jul 23, 2014 03:58 AM
- Posted Re: SdShowMsg causing Main Installation window to minimize on InstallShield Forum. Jul 22, 2014 08:53 AM
- Posted Re: INSTALLDIR is not C:\Program Files (x86) if user Select C:\Program Files for 32-bit on InstallShield Forum. Jul 22, 2014 08:50 AM
- Posted Re: Cancel button is disabled during tranfer phase of MODIFY or REMOVE wizards. on InstallShield Forum. Jul 22, 2014 08:48 AM
- Posted Re: Registering COM+ .NET dll via Regsvcs.exe Using installshield 2013 BASIC MSI on InstallShield Forum. Jul 22, 2014 08:44 AM
- Posted Re: How can I Call, LaunchAppAndWait() after reboot? on InstallShield Forum. Jul 22, 2014 08:37 AM
- Posted How can I Call, LaunchAppAndWait() after reboot? on InstallShield Forum. Jul 07, 2014 09:20 AM
- Tagged How can I Call, LaunchAppAndWait() after reboot? on InstallShield Forum. Jul 07, 2014 09:20 AM
- Tagged How can I Call, LaunchAppAndWait() after reboot? on InstallShield Forum. Jul 07, 2014 09:20 AM