May 28, 2010
11:30 AM
Hi: What is the technical support phone number? How much is it? Thanks, Yama
... View more
Labels
- Labels:
-
InstallShield 2009
May 28, 2010
10:08 AM
Your problem could be more than just an installation issue. For instance you might want to make sure you are differentiating 32bit vs. 64bit registry entries: For instance in some situation I get my installed directory from the registry: RegisteredInstalledDirectory = ""; if (SYSINFO.bIsWow64) then folder = "SOFTWARE\\Wow6432Node\\myCompany\\myProduct"; else folder = "SOFTWARE\\myCompany\\myProduct"; endif; key = "InstallLocation"; type = REGDB_STRING; size = -1; RegDBSetDefaultRoot (HKEY_LOCAL_MACHINE); if (RegDBGetKeyValueEx (folder, key, type, value, size) < 0) then WriteLog("RegDBGetKeyValueEx failed for InstallLocation."); else StringTrimRight(RegisteredInstalledDirectory , value); endif; There are some other things you have to consider. Can you possibly run your setup.exe and generate a log?
... View more
May 27, 2010
12:48 PM
I have the following in "Installation Information" - "General Information" Product Properites -- Install Conditions: Condition: (Not Version9X=400) And (Not Version9X=410) And (Not Version9X=490) And (Not VersionNT=400) And (Not VersionNT=500) Message: [ProductName] requires that your computer is running Windows XP with Service Pack 2 or later. Condition: AdminUser Message: You must be an Administration on the machine to run the installation. Condition: Not (VersionNT = 501 and ServicePackLevel < 2) Message: This installation requires Windows XP SP2 or later. Please install the required service packs and retry installation. Condition: Not (VersionNT = 600 and ServicePackLevel < 2) Message: This installation requires Windows Vista SP2 or later. Please install the required service packs and retry installation. Condition: Not (VersionNT64=502 And ServicePackLevel < 2) Message: This installation requires Windows XP SP2 or later. Please install the required service packs and retry installation. Condition: Not (VersionNT64=600 And ServicePackLevel < 2) Message: This installation requires Windows Vista SP2 or later. Please install the required service packs and retry installation.
... View more
Apr 17, 2009
11:12 AM
take a look at http://community.acresso.com/showthread.php?p=436766#post436766
... View more
Apr 17, 2009
11:09 AM
In Element Name: {ID_STRING14}Value[@Value="1.20.123.19/GRTE"] Delete the row with Remove Attribute In Adv. tab: Check "Update first..." I am still unclear of what you want... Copy and paste what your original sample.xml Manually go modifiy it and copy and paste revisioned sample.xml. This way I would have a clear idea of what you expect. Currently what you have and what you want to achieve is not quite conclusive or making sense... Thanks, Yama
... View more
Apr 17, 2009
12:55 AM
take a look at http://kb.acresso.com/selfservice/dynamickc.do?cmd=show&forward=nonthreadedKC&docType=kc&externalId=Q108764&sliceId=1 TRy it with your IS2009... see the samples provided and documentation and follow instruction...
... View more
Apr 17, 2009
12:45 AM
So this will output in sample.xml: http://servername/virtual... What was the previous XML you want to remove and what is the new XML you are trying to write/create?
... View more
Apr 17, 2009
12:24 AM
The harder way would be to perform the GAC programmatically in using C# and writing your own uninstall and install for GAC and NGen. In C# there is a way to GAC your assembly: using System.EnterpriseServices.Internal; public class Helper { public Helper (){} //-- do this after all files have installed with NOT REMOVE = "ALL" condition public void GACInstallAssembly(string installDirectory, string assemblyName) { Publish publish = new Publish(); publish.GacInstall(installDirectory + assemblyName); } //-- do this after ValidateInstall with REMOVE = "ALL" condition public void GACRemoveAssembly(string installDirectory, string assemblyName) { Publish publish = new Publish(); publish.RemoveGAC(installDirectory + assemblyName); } } For NGening using NGen 2.0 use Process to run the command line: /C C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe install "C:\assemblyName.dll" /ExeConfig:"C:\myExePath.exe" look at: http://msdn.microsoft.com/en-us/library/6t9t5wcf(VS.80).aspx Have fun 😄 Yama
... View more
Apr 17, 2009
12:06 AM
make sure you have .NET framework 1.1 installed on your client machine... IS2009 is behind in technology of GAC and NGen... They use .NET 1.1 ususally located in %windir% C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 It contains gacutil.exe and ngen.exe... The NGen.exe in version 1.1 allowed multiple assembly to get GAC; however, in 2.0 and greater .NET you are only allowed to to GAC a single assembly at a time. In order for your GAC and NGen to work make sure your client installs .NET 1.1. In your installer go to the Search folder and look for ngen and let it search for version 1.1 not 2.0. Let me know how far you get with this. Yama
... View more
Apr 16, 2009
11:46 PM
Have you tried to sign the package? This might have caused your rollback. It is looking for a certificate it cannot find. Take a look at: http://msdn.microsoft.com/en-us/library/aa370342(VS.85).aspx
... View more
Apr 16, 2009
11:38 PM
http://search.cpan.org/~alexeyt/Win32-File-VersionInfo-0.03/VersionInfo.pm http://search.cpan.org/~cosimo/Win32-API-0.58/API.pm
... View more
Apr 16, 2009
06:47 PM
Take a look at the screen shot... Hope it helps. Yama
... View more
Apr 16, 2009
06:43 PM
What dialog would you like to perform these actions? Before getting to the dialog set your property: MsiSetProperty(hMSI, "MYTEXTBOXSHOULDBEON", 1); Now in your dialog add a textbox "myTextbox" Go to dialog's Behavior Select your textbox "myTextbox" At the bottom select the Conditions tab. Set: Action: Hide - Condition: NOT MYTEXTBOXSHOULDBEON Action: Show - Condition: MYTEXTBOXSHOULDBEON Hope this helps. Yama
... View more
Apr 16, 2009
06:35 PM
Can you include a screen shot of your XML tree under "System Configuration\XML File Changes"
... View more
Latest posts by yamakamyar
Subject | Views | Posted |
---|---|---|
3242 | May 28, 2010 11:30 AM | |
631 | May 28, 2010 10:08 AM | |
517 | May 27, 2010 12:48 PM | |
822 | Apr 17, 2009 11:12 AM | |
1633 | Apr 17, 2009 11:09 AM | |
370 | Apr 17, 2009 12:55 AM | |
1633 | Apr 17, 2009 12:45 AM | |
1103 | Apr 17, 2009 12:24 AM | |
1103 | Apr 17, 2009 12:06 AM | |
1119 | Apr 16, 2009 11:55 PM |
Activity Feed
- Posted Technical Support on InstallShield Forum. May 28, 2010 11:30 AM
- Posted Re: Major Upgrade on 64bit systems on InstallShield Forum. May 28, 2010 10:08 AM
- Posted Install Conditions on InstallShield Forum. May 27, 2010 12:48 PM
- Posted Re: Progress bar control (Basic MSI) on InstallShield Forum. Apr 17, 2009 11:12 AM
- Posted Re: help me to update XML file through ism on InstallShield Forum. Apr 17, 2009 11:09 AM
- Posted Re: from where i can get new skins? on InstallShield Forum. Apr 17, 2009 12:55 AM
- Posted Re: help me to update XML file through ism on InstallShield Forum. Apr 17, 2009 12:45 AM
- Posted Re: .net assemblies to GAC on InstallShield Forum. Apr 17, 2009 12:24 AM
- Posted Re: .net assemblies to GAC on InstallShield Forum. Apr 17, 2009 12:06 AM
- Posted Re: Upgrade almost perfect on InstallShield Forum. Apr 16, 2009 11:55 PM
- Posted Re: Chained .MSI not installing - What's wrong? on InstallShield Forum. Apr 16, 2009 11:46 PM
- Posted Re: How to get a setup luancher file's file version/Product Version by perl/nant scripts on InstallShield Forum. Apr 16, 2009 11:38 PM
- Posted Re: how to avoid 'Install Welcome' or 'Welcome' screen while installing? on InstallShield Forum. Apr 16, 2009 06:47 PM
- Posted Re: how to create textbox at runtime? on InstallShield Forum. Apr 16, 2009 06:43 PM
- Posted Re: help me to update XML file through ism on InstallShield Forum. Apr 16, 2009 06:35 PM
- Posted Re: How to include MS SQL Compact in Basic MSI? on InstallShield Forum. Apr 16, 2009 06:30 PM
- Posted Re: InstallShield 2009 on InstallShield Forum. Apr 14, 2009 01:53 PM
- Posted Re: InstallShield 2009 on InstallShield Forum. Apr 10, 2009 07:24 PM
- Posted Re: InstallShield 2009 Premier can't delete file from System32 during uninstall on InstallShield Forum. Apr 10, 2009 07:21 PM
- Posted Re: InstallShield 2009 on InstallShield Forum. Apr 10, 2009 07:11 PM