Jul 13, 2012
05:16 PM
SdShowMsg is show only for a few seconds and is by default set to center screen. if you want to be shown as STATUSDLG StatusUpdate( ON, 100); Disable (STATUSEX); Enable (STATUSDLG); SetStatusWindow( -1, "Installing program files... please wait." ); //Set Status Dialog location PlaceWindow ( STATUSDLG , CENTERED , 5 , LOWER_LEFT );
... View more
Jul 13, 2012
05:08 PM
begin nResult = LaunchAppAndWait ( "\"" + TARGETDIR ^ "ExecutePatches.bat\"", "", WAIT | LAAW_OPTION_WAIT_INCL_CHILD ); Delay(3); end;
... View more
Jul 11, 2012
04:13 PM
the batch will start in SILENT mode! he'll do the job 🙂
... View more
Jul 06, 2012
09:31 AM
#define WIN_DIR WINDIR^"system32" #define FILE_SPEC "D3DX9_43.dll" #define SOURCE_FILES SRCDIR #define DIRECTX "Support\\directx9.0c\\dxsetup.exe" #define CMD_LINE " /silent" LaunchApplication ( DIRECTX ,CMD_LINE, SOURCE_FILES , SW_SHOW , 1000000 , WAIT | LAAW_OPTION_WAIT_INCL_CHILD); TAKE THIS AS EXAMPLE ! LaunchApplication ( szProgram , szCmdLine , szDirectory , SW_SHOW , nTimeOut , LAAW_OPTION_WAIT_INCL_CHILD ); you may use SW_HIDE instead of SW_SHOW if you want to be invisible when install .
... View more
Jun 29, 2012
01:56 AM
Senor MichaelU I've asked all around of this forum and nobody answer to me at this simple question yet; Why the progress bar doesn't have anymore percentage 15%... ??? is there a possibility to enable this in IS2010 ? And why answers came here after years ? Why moderators not bring help to users as quick they post(minim one day let's say) ? It is so frustrated to get answer after months or years ! Don't you have active moderators in here or what is the problem with this forum? Excuse me for the inconvenience created. Thank You!
... View more
Jun 18, 2012
03:44 AM
balaji.akula wrote: Is anybody knows...please help me.. i'm using Installscript project, how can we change the Company name, product name and version on setup.exe using installscript. #include "Ifx.h" function OnBegin() begin IFX_SETUP_TITLE = ""; // here is for dialog title IFX_PRODUCT_DISPLAY_NAME = ""; IFX_PRODUCT_NAME = ""; end; put between the "", the names as you wish !
... View more
Jun 15, 2012
04:24 AM
instead of COMP_NORMAL use INCLUDE_SUBDIR
... View more
Jun 08, 2012
05:42 AM
You should backup this file "B314E111"(this is an example) and when install windows place it there: C:\ProgramData\InstallShield\Licenses\"B314E111"
... View more
Jun 01, 2012
03:31 AM
The Support Files view allows you to add files that are installed to the target system for use only during the installation process. These files are automatically removed from the target system when the installation is complete.
... View more
May 31, 2012
07:53 AM
It is recommended NOT to do that but you should use Resource Hacker 3.6 for setup.exe if you really want to do such things. Make sure you have made an copy of your setup.exe before apply those changes !
... View more
May 31, 2012
04:08 AM
i think you're looking for a constant like SRCDIR right?
... View more
May 31, 2012
03:59 AM
take this as example #include "Ifx.h" function OnBegin() begin // TODO: Perform custom initialization steps, check requirements, etc. // Set the product name to substitute for the %P place holder. IFX_SETUP_TITLE = "Your application product name" ; // here is what you need, replace what is in quotes..."your app name or title" end;
... View more
May 31, 2012
03:52 AM
#define SOURCE_FILES SRCDIR // from where to be installed #define OFFICE10 "...where your app is at" #define CMD_LINE1 " /silent /v/q" //if you need to be installed in silent mode STRING szKeyRoot; //set registry location RegDBSetDefaultRoot(HKEY_CURRENT_USER); szKeyRoot = "Software\Microsoft\Office" if (RegDBKeyExist (szKeyRoot)<0) then LaunchApplication ( OFFICE10 , CMD_LINE1 , SOURCE_FILES , SW_SHOW , 1000000 , WAIT | LAAW_OPTION_SHOW_HOURGLASS); endif;
... View more
May 24, 2012
04:00 PM
take this as example: //================================================ // On End // execute AutoRun after UnInstalled or Installed //================================================ #include "ifx.h" #define SOURCE_FILE1 SRCDIR #define AUTORUN SRCDIR^"AutoRun.exe" function OnEnd() begin; //Launch setup AutoRun after complete setup uninstalling files of MyAppName LaunchApp (AUTORUN, SOURCE_FILE1); end;
... View more
Latest posts by KEiGHT
Subject | Views | Posted |
---|---|---|
789 | Jul 13, 2012 05:16 PM | |
1555 | Jul 13, 2012 05:08 PM | |
1555 | Jul 11, 2012 04:13 PM | |
1555 | Jul 06, 2012 09:31 AM | |
858 | Jun 29, 2012 01:56 AM | |
2344 | Jun 18, 2012 03:44 AM | |
522 | Jun 15, 2012 04:24 AM | |
539 | Jun 08, 2012 05:42 AM | |
3313 | Jun 01, 2012 03:31 AM | |
2344 | May 31, 2012 07:53 AM |
Activity Feed
- Posted Re: SdShowMsg position on InstallShield Forum. Jul 13, 2012 05:16 PM
- Posted Re: LaunchAppAndWait doesn't wait + small status dialog on InstallShield Forum. Jul 13, 2012 05:08 PM
- Posted Re: LaunchAppAndWait doesn't wait + small status dialog on InstallShield Forum. Jul 11, 2012 04:13 PM
- Posted Re: LaunchAppAndWait doesn't wait + small status dialog on InstallShield Forum. Jul 06, 2012 09:31 AM
- Posted Re: Is the ".rtf" the only format supported for License file? on InstallShield Forum. Jun 29, 2012 01:56 AM
- Posted Re: I have to change the Company name, File version, product Name on setup.exe on InstallShield Forum. Jun 18, 2012 03:44 AM
- Posted Re: XCopyFile does not overwrite file if it is newer on InstallShield Forum. Jun 15, 2012 04:24 AM
- Posted Re: InstallShield doesn't remember license server on InstallShield Forum. Jun 08, 2012 05:42 AM
- Posted Re: SUPPORTDIR question. How I can use it? on InstallShield Forum. Jun 01, 2012 03:31 AM
- Posted Re: I have to change the Company name, File version, product Name on setup.exe on InstallShield Forum. May 31, 2012 07:53 AM
- Posted Re: Where is SRC path defined and how to update .ism automatically when it changes? on InstallShield Forum. May 31, 2012 04:08 AM
- Posted Re: I have to change the Company name, File version, product Name on setup.exe on InstallShield Forum. May 31, 2012 03:59 AM
- Posted Re: Software conditions and registry keys on InstallShield Forum. May 31, 2012 03:52 AM
- Posted Re: Another dumb question about Adobe Flash Player MST on InstallShield Forum. May 24, 2012 04:00 PM
- Posted Re: After Installation Help on InstallShield Forum. May 24, 2012 06:42 AM
- Posted Re: Installation .Net framework ( v3.5) throw install shield on InstallShield Forum. May 23, 2012 12:57 PM
- Posted Re: System Search for file with specific versions Issue on InstallShield Forum. May 23, 2012 12:35 PM
- Posted Re: How to change SdShowDlgEdit dialog field length? on InstallShield Forum. May 23, 2012 12:26 PM
- Posted Re: System Search for file with specific versions Issue on InstallShield Forum. May 23, 2012 12:20 PM
- Posted Re: Point to folder to Extract Executable on InstallAnywhere Forum. May 22, 2012 05:06 AM