Oct 16, 2008
05:08 AM
Hi, I am using InstallScript MSI Project. Let me know if you have used SQLRTInitialize2() in Custom Action in InstallScript MSI Project.
... View more
Oct 15, 2008
07:55 AM
Hello, Can we call SQLRTInitialize2() function in installscript deferred custom action?
... View more
Labels
- Labels:
-
InstallShield 2008
Oct 15, 2008
12:55 AM
Hi, Sorry, I might be asking stupid question but still, Have changed product version and package code also? Thanks Sachin Pawar
... View more
Sep 22, 2008
11:33 PM
Hello, Please try ProductCode / PRODUCT_GUID property. Thanks Sachin Pawar
... View more
Sep 19, 2008
07:58 AM
Hello, Please set CustomActionData MSI property to SUPPORTDIR using Set Property Custom Action. Please find the more details on following link. Accessing or Setting Windows Installer Properties Through Deferred, Commit, and Rollback Custom Actions Thanks Sachin Pawar
... View more
Sep 19, 2008
07:45 AM
Hello, Please set "IS_SQLSERVER_CA_SILENT" Msi Property to 1. Thanks Sachin Pawar
... View more
Sep 19, 2008
07:06 AM
Hello jayakumarn, The MsiGetProductInfo works for only installed product. Please verify the product code you specifies is the product which is installed already. Thanks Sachin Pawar
... View more
Sep 11, 2008
07:47 AM
🙂 Function to remove occurences of certain string from end of provided string. prototype STRING TrimEnd(STRING, STRING); /// ///Removes all occcurences of the trim string at the end of original /// string. /// /// String to be trimmed at end. /// // String to be removed from the end of original string. /// function STRING TrimEnd(szString, szTrim) STRING szReturn; INT ivStartIndex; INT ivTrimLength; begin szReturn = szString; ivTrimLength = StrLength(szTrim); ivStartIndex = StrLength(szReturn) - ivTrimLength; while(StrFindEx(szReturn,szTrim, ivStartIndex) > 0) StrReplace(szReturn, szTrim,"",ivStartIndex); ivStartIndex = StrLength(szReturn) - ivTrimLength; endwhile; return szReturn; end;
... View more
Sep 11, 2008
07:13 AM
🙂 Function to remove occurences of certain string at start from the provided string. prototype STRING TrimStart(STRING, STRING); /// ///Removes all occcurences of the trim string at the start of original /// string. /// /// String to be trimmed at start. /// // String to be removed from the start of original string. /// function STRING TrimStart(szString, szTrim) STRING szReturn; begin szReturn = szString; while(StrFind(szReturn,szTrim) = 0) StrSub(szReturn, szReturn, StrLength(szTrim), StrLength(szReturn)); endwhile; return szReturn; end; Thanks Sachin Pawar
... View more
Labels
- Labels:
-
InstallShield 2008
Sep 04, 2008
07:45 AM
Hi, Please pass /x as an argument to uninstall the software. Thanks Sachin Pawar
... View more
Sep 04, 2008
07:41 AM
Hi, I don't know about web project in installshield, but there are some predifined constants for getting path of .NET framework folder. Please try following pre-defined constant to retrieve correct of .NET Framework folder path. FOLDER_DOTNET_20 Thanks Sachin Pawar
... View more
Aug 29, 2008
02:45 AM
Hello, Following is script to generate compressed guid id from the original guid. /// /// Converts original GUI to Compressed guid. /// /// StrReplace(szCompressed,"-","",0); StrReplace(szCompressed,"}","",0); StrSub(szSub, szCompressed,0,8); szReturn = ReverseString(szSub); StrSub(szSub, szCompressed,8,4); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,12,4); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,16,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,18,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,20,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,22,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,24,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,26,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,28,2); szReturn = szReturn + ReverseString(szSub); StrSub(szSub, szCompressed,30,2); szReturn = szReturn + ReverseString(szSub); return szReturn; end; /// /// Reverse string. /// /// for nvIndex = 0 to StrLength(szOriginal) - 1 StrSub(szValue, szOriginal, nvIndex, 1); szReversed = szValue + szReversed; endfor; return szReversed; end; Hope It helps somebody. Thanks Sachin Pawar
... View more
Labels
- Labels:
-
InstallShield 2008
Aug 29, 2008
02:04 AM
Hello Shuttledude, Please make sure that upgrade code of Old version 7.4.0.0 and New version 8.0.1.0 is same. That could be the reason it's not able to find the related product depending upon the upgrade code of the latest version. If still does not work, please check out for msi log created by the setup in %windir%. You can look out for entry of ISSetAllUsers custom action. This action will se IS_MAJOR_UPGRADE property to "Yes". Thanks Sachin
... View more
Aug 29, 2008
01:56 AM
Hi, Can you please help me to retrieve version of earlier installed version while performing Major upgrade. Thanks Sachin Pawar
... View more
Labels
- Labels:
-
InstallShield 2008
Aug 29, 2008
12:26 AM
Hello, The version number must contain only numbers, and it must be in the format aaa.bbb.ccccc, where aaa represents the major version number, bbb represents the minor version number, and ccccc represents the build number. The maximum value for the aaa and bbb portions is 255. The maximum value for ccccc is 65,535. Remember you can have product version like 255.255.65535.1.9 also, but installer only considers the major.minor.build numbers out of it. Thanks Sachin Pawar
... View more
Latest posts by sachin_a_pawar
Subject | Views | Posted |
---|---|---|
610 | Oct 16, 2008 05:08 AM | |
3022 | Oct 15, 2008 07:55 AM | |
1124 | Oct 15, 2008 12:55 AM | |
942 | Sep 22, 2008 11:33 PM | |
433 | Sep 19, 2008 07:58 AM | |
603 | Sep 19, 2008 07:45 AM | |
942 | Sep 19, 2008 07:06 AM | |
506 | Sep 11, 2008 07:47 AM | |
6513 | Sep 11, 2008 07:13 AM | |
589 | Sep 04, 2008 07:45 AM |
Activity Feed
- Posted Re: Custom Action and SQLRTInitialize2 on InstallShield Forum. Oct 16, 2008 05:08 AM
- Posted Custom Action and SQLRTInitialize2 on InstallShield Forum. Oct 15, 2008 07:55 AM
- Posted Re: Major Upgrade issues on InstallShield Forum. Oct 15, 2008 12:55 AM
- Posted Re: Product Code problem! on InstallShield Forum. Sep 22, 2008 11:33 PM
- Posted Re: How to call dll which is located in [SUPPORTDIR]? on InstallShield Forum. Sep 19, 2008 07:58 AM
- Posted Re: [IS MSI] test db connection on InstallShield Forum. Sep 19, 2008 07:45 AM
- Posted Re: Product Code problem! on InstallShield Forum. Sep 19, 2008 07:06 AM
- Posted TrimEnd: removes occurences pf specified trim string from original string from end on InstallShield Forum. Sep 11, 2008 07:47 AM
- Posted TrimStart: Removes all the occurence(s) of trim string from the original string on InstallShield Forum. Sep 11, 2008 07:13 AM
- Posted Re: CustomAction Running Exe on InstallShield Forum. Sep 04, 2008 07:45 AM
- Posted Re: Asp.net WebSite Installation on InstallShield Forum. Sep 04, 2008 07:41 AM
- Posted How to genereate Compressed GUID using InstallScript on InstallShield Forum. Aug 29, 2008 02:45 AM
- Posted Re: After Major Upgrade, Multiple Entries in Add/Remove Programs on InstallShield Forum. Aug 29, 2008 02:04 AM
- Posted How can I get product version of earlier installed version during major upgrade? on InstallShield Forum. Aug 29, 2008 01:56 AM
- Posted Re: version comparison failed on InstallShield Forum. Aug 29, 2008 12:26 AM
- Posted Re: version comparison failed on InstallShield Forum. Aug 28, 2008 10:31 AM
- Posted Re: How to send custom messages to InstallShield custom dialog from an external DLL on InstallShield Forum. Jul 28, 2008 07:07 AM