Apr 17, 2009
01:30 AM
I think that putting a browse dialog for destination location is a better solution for this. So that a end user can browse and select the location. you can pass the default location here as the condition of OS.
... View more
Apr 16, 2009
06:26 AM
I am using installshield 2008 and your project is created with some latest version of IS.. so i cant revert back your project file......:(
... View more
Apr 16, 2009
06:13 AM
use double slash in place of single slash when giving the path name. e.g. if(SYSINFO.nOSMajor >= 6) then CreateDir("c:\\users\\Vista"); // for vista elseif (SYSINFO.nOSMajor = 5) then CreateDir("c:\\program files\\XP"); // for xp endif;
... View more
Apr 16, 2009
05:27 AM
put your path in place of ProgramFilesFolder... did you try this?
... View more
Apr 16, 2009
04:48 AM
if(SYSINFO.nOSMajor >= 6) then INSTALLDIR = ProgramFilesFolder ^ "VISTA"; // for vista elseif (SYSINFO.nOSMajor >= 5) then INSTALLDIR = ProgramFilesFolder ^ "XP"; // for xp endif; use the above code. There was a space between else and if Thanks Chandan
... View more
Apr 16, 2009
04:33 AM
use the following piece of code : if(SYSINFO.nOSMajor >= 6) then INSTALLDIR = ProgramFilesFolder ^ "VISTA"; // for vista else if (SYSINFO.nOSMajor >= 5) then INSTALLDIR = ProgramFilesFolder ^ "XP"; // for xp endif; I think this would be helpful for you....
... View more
Apr 16, 2009
01:57 AM
yes its possible.. in install script you have to put the condition. you have to check the OS and then set the INSTALLDIR. here is the pseudo code; if(version is winXP) then INSTALLDIR = else if(version is WinVista) then INSTALLDIR =
... View more
Apr 14, 2009
05:13 AM
What is your project type? is it install script project?
... View more
Apr 13, 2009
01:02 AM
i think, you should use double slash in place of single. e.g. CMD /C CALL "C:\\Program Files\\Nil\\script.bat"
... View more
Apr 13, 2009
12:54 AM
use WindowsFolder in place of WINDIR and then try.....
... View more
Apr 04, 2009
05:25 AM
try this: INSTALLDIR = USER_MAGIC_FOLDER1 $MY_DEST_PATH1; then append the path
... View more
Mar 26, 2009
07:28 AM
I have created a project in IS 2008 Professional edition. It has 4 features. During maintenance mode if i select modify then if i deselect any feature which was already installed, then the setup removes the deselected feature. I do not want to remove the deselected feature. I want to implement the condition for only one feature. Is there any way to prevent remove in modify.:confused: Thanks In advance.
... View more
Labels
- Labels:
-
InstallShield 2008
Mar 18, 2009
04:46 AM
Edit the prerequisite, go to the "Application to run" tab. Here you will find the test box to enter the command for the msi to run in silent mode, enter /qn in the text box. Hope it will work.
... View more
Mar 07, 2009
02:31 AM
Use the following code, this is working for me : strMutex = "MY_SETUPMUTEX" ; hMutex = Kernel32.CreateMutex(NULL, TRUE, strMutex); nError = Err.LastDllError(); if (hMutex != 0 && nError == 183) then MessageBox("Another Instance of this setup is already running", WARNING); ReleaseMutex(hMutex); abort; endif; use Kernel32.dll
... View more
- « Previous
- Next »
Latest posts by ChandanOmkar
Subject | Views | Posted |
---|---|---|
755 | Dec 03, 2010 01:58 AM | |
718 | Jan 19, 2010 06:51 AM | |
806 | Jan 11, 2010 11:27 PM | |
1015 | Jan 06, 2010 06:57 AM | |
1015 | Jan 06, 2010 06:14 AM | |
675 | Dec 30, 2009 06:07 AM | |
504 | Dec 20, 2009 11:01 PM | |
1922 | Dec 07, 2009 10:31 PM | |
836 | Dec 01, 2009 05:27 AM | |
837 | Nov 30, 2009 02:42 AM |
Activity Feed
- Posted Re: Silent install not working for more than one feature on InstallShield Forum. Dec 03, 2010 01:58 AM
- Posted Re: Uninstalling Previous Version of Software? on InstallShield Forum. Jan 19, 2010 06:51 AM
- Posted Re: Deploying a website using Installscript project on InstallShield Forum. Jan 11, 2010 11:27 PM
- Posted Re: How to merge two buttons "Change" and "Remove" on InstallShield Forum. Jan 06, 2010 06:57 AM
- Posted Re: How to merge two buttons "Change" and "Remove" on InstallShield Forum. Jan 06, 2010 06:14 AM
- Posted Re: Where to put some files... on InstallShield Forum. Dec 30, 2009 06:07 AM
- Posted Re: run an event of another script on InstallShield Forum. Dec 20, 2009 11:01 PM
- Posted Re: Issue using Self-registration property of Installshield 12 or higher on windows vista on InstallShield Forum. Dec 07, 2009 10:31 PM
- Posted Re: How to run an executable from InstallScript installer? on InstallShield Forum. Dec 01, 2009 05:27 AM
- Posted Re: auto unisntall and install on InstallShield Forum. Nov 30, 2009 02:42 AM
- Posted Re: auto unisntall and install on InstallShield Forum. Nov 30, 2009 01:12 AM
- Posted Re: prevent removal of certain features during uninstall on InstallShield Forum. Nov 26, 2009 03:32 AM
- Posted Re: SelfRegistering a DLL not working on InstallShield Forum. Nov 25, 2009 10:44 PM
- Posted Re: SelfRegistering a DLL not working on InstallShield Forum. Nov 23, 2009 06:33 AM
- Posted Re: Choosing proyect type on InstallShield Forum. Nov 21, 2009 12:02 AM
- Posted Re: prevent removal of certain features during uninstall on InstallShield Forum. Nov 20, 2009 06:16 AM
- Posted Re: Fatal Error:0 on InstallShield Forum. Nov 19, 2009 04:53 AM
- Posted Re: Fatal Error:0 on InstallShield Forum. Nov 19, 2009 04:36 AM
- Posted Re: how to set Admin privildege for Msiexec.exe on InstallShield Forum. Nov 18, 2009 10:48 PM
- Posted Re: Error in silent mode: ResultCode=-3 on InstallShield Forum. Nov 18, 2009 12:30 AM