Aug 11, 2009
09:27 AM
Try like.. You came to know that..the feature is selected or not. szFeature = "X-Feature name"; MsiGetFeatureState(hMSI, szFeature, lResult, lAction); if (lAction > 0 ) then MsiSetProperty(ISMSI_HANDLE,"PINS","1"); else MsiSetProperty(ISMSI_HANDLE,"PINS","0"); endif; If it returns "1" means he selectd the feature to install in the target diretory. i think Code will help. Thanks Reddy 611
... View more
Aug 11, 2009
02:39 AM
Can you change the Component code in the new build. And also can you change the .net scan at build property as a "properties Only" try this one this will help your application installtion. Thanks Reddy
... View more
Aug 11, 2009
02:36 AM
hi, In the Property Manager Can you please this property Name like this :"LIMITUI" Value of the proprety is "1". I think this will help your application silent installation. Regards Reddy.c
... View more
Aug 10, 2009
08:29 AM
Hi friends, I came to know that enterprise level deployment tools such as SMS is there to depoly the Msi installer in the end user machines. Can you please tell me steps how do this in installshield if possible.If not what are all the tools are available depoly the .msi installer . I dont know any thing about SMS also please for give if am worng.Can any one please give all steps on SMS. please share the documents on SMS. I know AD/ADAM(domain configuration ) configurations ,but i dont know how to use the SMS with installshield. Advanced Thanks Reddy
... View more
Labels
- Labels:
-
InstallShield 2008
Jun 04, 2009
05:18 AM
HI, are you storing the existing installed product code in the registry Y/N ..? IF yes get the registry value useing this code and uninstall the product in silent mode. RegDBSetDefaultRoot (HKEY_LOCAL_MACHINE); szKey = PRODUCT_KEY; szName = "Productcode"; nvType = REGDB_STRING; RegDBGetKeyValueEx (szKey,szName,nvType,svValue,nvSize); if svValue != "" then szProgram = "msiexec.exe"; Uninstall = "/x "; Suninstall = " /Quiet "; CmdLineValue = Uninstall + svValue + Suninstall; //CmdLineValue = Uninstall + svValue ; //MessageBox(CmdLineValue,INFORMATION); LaunchAppAndWait(szProgram,CmdLineValue,LAAW_OPTION_WAIT); return 0; endif; IF NO,after installing the product in the registry here you will get it.HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall useing the above code ..you can uninstall the product. Steps to Uninstall the application in silent mode. 1)after welcome dialog create a custom daillog with two radio butoon. one radio :upgrdare the installion with reataining old configuration two radio :remove all the componentes with out retaining the old configuration. after this show EULA dialog to continue the installation. i think this information will help ful to you. Regards Reddy.c
... View more
Jun 04, 2009
05:06 AM
i faced this problem while am useing installshield 10x version. I written the installscript in the major version to delete the old component (.exe) ,short cut ,before copying new componet(.exe) in the end user machine. regards reddy611
... View more
May 28, 2009
05:13 AM
hi , i solved the problem .. Solution for this. cd /d $USER_INSTALL_DIR$$/$Uninstall_EN call.bat >> f:$\$output.txt
... View more
May 27, 2009
09:48 AM
Thnks for your reply jerome.. i will try and let you know it will work or not. thnks Reddy611
... View more
May 27, 2009
09:46 AM
Hi friends, AM trying to call VB script from install anywhere it is not working. I selected Execute script/batch file action to execute the vb script. Example script. cd /d $USER_INSTALL_DIR$$/$Uninstall_EN envPath.vbs And also I tried using .bat file to call the VB script. Example script. cd /d $USER_INSTALL_DIR$$/$Uninstall_EN Path.bat In both scenarios it is not working. But I tried using java code to call the VB script it was working fine. In java I written the code .for the code I created jar file. For this I selected Execute script/batch file action to execute the vb script Example script. cd /d $USER_INSTALL_DIR$$/$Uninstall_EN Java -jar envPath.jar IS INSTALLANYWHERE 2008 standard version won’t support to execute the VB script. If it support can you please tell me how to do this. Can you please help me how to call vbscipt without java help. Advanced Thanks Reddy611
... View more
Labels
- Labels:
-
InstallAnywhere 2008
May 20, 2009
06:35 AM
I have a small issue could you please help me on this. In the choose install set panel I have two features . the features are follows 1) Microsoft IIS 6.0 -32 bit 2) Microsoft IIS 6.0 - 64 bit First feature will install only in windows 2003 32 –bit Operating system. Second feature will install only in windows 2003 64-bit operating system. Using the Rules I can able to enable and disable the features in the choose install set panel. Help need form Acresso: If I select the first feature in the choose install set (windows 2003 32 –bit),in the choose install folder the installation directory it is showing like this : C:\Program Files. If I select the second feature in the choose install set(windows 2003 64-bit) ,in the choose install folder the installation directory it is showing like this : C:\Program Files (x86). Expected result: If I select the second feature in the choose install set(windows 2003 64-bit) ,in the choose install folder the expected installation directory is : C:\Program Files. Problem from InstallAnywhere : In the build if I select with out VM ,the build is working fime with Expected result. In the build if I select With VM , the build is not working with Expected result.it is coming like this in the choose install panel : C:\Program Files (x86). As per my requierment VM is required for the installer.
... View more
Labels
- Labels:
-
InstallAnywhere 2008
May 06, 2009
05:39 AM
could please any one tell me what is difference betweem Install script MSI and Basic MSI. i know the Diffrences. here my point is where should we have to select these project. If i select the Installscript MSI project what are all the advantages i Have. disadvantages of basic MSI. I dont no for which type of projects (WEB APPlication or Windows Application),i have to select these modules. regards. Reddy.chilakam
... View more
Labels
- Labels:
-
InstallShield 2008
May 06, 2009
05:11 AM
const HKEY_LOCAL_MACHINE = &H80000002 strComputer = "." 'Set StdOut = WScript.StdOut Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_ strComputer & "\root\default:StdRegProv") strKeyPath = "SOFTWARE\Symphony\IMS\WEA" strValueName = "Eclipse" strValue = "Installed" oReg.CreateKey HKEY_LOCAL_MACHINE,strKeyPath oReg.SetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strValue I added the above code into .vbs file and i created a .bat file ,inside the .bat file i simply kept the .vbs file name . the both .vbs and .bat file added to the ISM.if you want you can keep these files in INSTALL DIR or SUPPORT location .i KEPT in SUPPORT DIR. then i written the install script like this . function MyFunction(hMSI) STRING szName,szKey; NUMBER nResult; // To Do: Declare local variables. begin szName = SUPPORTDIR^"r.bat"; szKey = ""; MessageBox(szKey,INFORMATION); nResult = LaunchAppAndWait(szName, szKey, WAIT); end; i called this installscript function at sequence--Installation-Execute-AfterRemoveRegistry files in while uninstalling the application. Install exe condition REMOVE="ALL" the above process is working fine.and i can able to create the registry entries while uninstallation the application. Regards Reddy.Chilakam
... View more
Apr 30, 2009
12:15 AM
i tried in vb script.it was woking fine for me. y cont u try in IS script.i think this will work . Can you try it once let me know..
... View more
Apr 29, 2009
09:51 AM
i think you have to take the help form programing language. useing the code you can validate the USID. like c++,VC++,C#
... View more
Apr 29, 2009
09:49 AM
I think this installscript is help to ful. nResult = LaunchAppAndWait(SUPPORTDIR^"regsvr32.exe", WINSYSDIR^DLLNAME+ " \/u /\s",WAIT); if (nResult < 0) then ListAddString(listLog,"Failed to register "+ ETACTIVATION_DLL,AFTER); ListAddString(listErrors,"Failed to register "+ ETACTIVATION_DLL,AFTER); bSeriousError = TRUE; endif;
... View more
Latest posts by Reddy611
Subject | Views | Posted |
---|---|---|
1882 | May 11, 2012 06:32 AM | |
4954 | Jun 20, 2010 11:42 PM | |
517 | Apr 19, 2010 04:38 AM | |
1647 | Apr 05, 2010 06:18 AM | |
904 | Mar 25, 2010 01:16 AM | |
5240 | Mar 24, 2010 05:48 AM | |
500 | Mar 22, 2010 07:12 AM | |
752 | Feb 23, 2010 11:46 PM | |
788 | Feb 22, 2010 06:19 AM | |
2884 | Dec 02, 2009 04:01 AM |
Activity Feed
- Posted Expand Archive Return Value on InstallAnywhere Forum. May 11, 2012 06:32 AM
- Posted Suppress the reboot Microsoft .Net Framework_V 4.0 on AdminStudio Forum. Jun 20, 2010 11:42 PM
- Posted Re: Maintenance Type problem on InstallShield Forum. Apr 19, 2010 04:38 AM
- Posted Maintenance Type problem on InstallShield Forum. Apr 05, 2010 06:18 AM
- Posted Re: Windows silent mode installation. on InstallAnywhere Forum. Mar 25, 2010 01:16 AM
- Posted Windows silent mode installation. on InstallAnywhere Forum. Mar 24, 2010 05:48 AM
- Posted Re: How to select Features on InstallShield Forum. Mar 22, 2010 07:12 AM
- Posted Re: How to change Company name information using patch design? on InstallShield Forum. Feb 23, 2010 11:46 PM
- Posted Re: Upgrade installation (Installscript to Basic MSI) on InstallShield Forum. Feb 22, 2010 06:19 AM
- Posted Install Dir Location problem in 64-bit machine. on InstallShield Forum. Dec 02, 2009 04:01 AM
- Posted Re: Silent installer without CommandLine? on InstallShield Forum. Oct 08, 2009 06:22 AM
- Posted Re: IESHIMS.DLL & WER.DLL missing and could not found on InstallShield Forum. Oct 08, 2009 06:10 AM
- Posted Re: Deleting Files on InstallShield Forum. Oct 08, 2009 06:00 AM
- Posted Re: Failed to create virtual directory in Server 2008, IIS7 on InstallShield Forum. Sep 17, 2009 10:17 AM
- Posted 32 bit and 64 bit support Help. on InstallShield Forum. Aug 25, 2009 09:11 AM
- Posted Re: MsiGetFeatureState on InstallShield Forum. Aug 11, 2009 09:27 AM
- Posted Re: Files not overwritten on InstallShield Forum. Aug 11, 2009 02:39 AM
- Posted Re: Install question - silent mode on InstallShield Forum. Aug 11, 2009 02:36 AM
- Posted SMS +Installshield. on InstallShield Forum. Aug 10, 2009 08:29 AM
- Posted Re: How to auto start the install process after uninstall? on InstallShield Forum. Jun 04, 2009 05:18 AM