Jun 06, 2008
09:10 PM
Business Definition for: Customer Relations The approach of an organization to winning and retaining customers. The most critical activity of any organization wishing to stay in business is its approach to dealing with its customers. Putting customers at the center of all activities is seen by many as an integral part of quality, pricing, and product differentiation. On one level, customer relations means keeping customers fully informed, turning complaints into opportunities, and genuinely listening to customers - - http://dictionary.bnet.com/definition/customer+relations.html
... View more
Jun 06, 2008
05:44 PM
JeffGreenwald wrote: When InstallShield 12 was released in June 2006, it was announced that the Standalone Build would be packaged only with the InstallShield Premier Edition. In preparation for that release, we recognized that some users may need additional time to upgrade to the Premier Edition. Therefore, accommodations were made for a certain subset of the InstallShield 12 Professional users, granting them access to the InstallShield 12 Standalone Build module as part of that release. Now that two years have passed, and multiple releases have entered the market, the transition is being completed. The Standalone Build functionality continues to be packaged with the Premier Edition in InstallShield 2009. The Standalone Build module can coexist with other versions of InstallShield, and you can run it from the command line. Each full license of InstallShield Premier Edition includes 10 Standalone Build modules. Thanks, In effect, two years ago you downgraded the product to a number of long term users who held maintenance contracts. This feature used to be freely available as part of the purchase of Installshield. A vast number of us built automated build processes which depend on the standalone build module. Then you issue Installshield 12 and decide to force us to spend $2000 extra for the same functionality? I'm sorry, but something is wrong with this thinking. There are other products on the market which allow command line builds which are far less expensive than this offering.
... View more
Jun 05, 2008
10:41 AM
The standalone build module is currently available only for users who purchase the premier edition of Installshield 2009. That was not the case in the past, up until the issuance of Installshield 12. When Installshield 12 was released, the end user license agreement stated that "users of earlier versions of InstallShield Professional Edition (10, 10.5, 11, and 11.5) are also entitled to use the Standalone Build". Would owners of legacy Installshield products still have access to use the standalone build module for Installshield 2009? I did not see any references stating as such in the EULA lfor Installshield 2009..
... View more
Labels
- Labels:
-
InstallShield 2009
Dec 31, 2007
03:05 PM
I'm not sure if this would help you or not - You can access extended file properties using Microsoft's dsofile.dll http://www.microsoft.com/technet/scriptcenter/resources/tales/sg0305.mspx Additionally, it appears that there is a way to access certain properties using vb script: http://www.microsoft.com/technet/scriptcenter/guide/sas_fil_lunl.mspx?mfr=true
... View more
Dec 21, 2007
12:52 PM
I use vbscript. This example is from a project that is authored using Installshield 12. dim pCMProject set pCMProject = CreateObject("SAAuto12.ISWiProject") pCMProject.OpenProject("E:\Dev\Installation\InstallerProjects\CMaster.ism") pCMProject.BuildPatchConfiguration "Patch"
... View more
Nov 21, 2007
08:47 AM
It sounds like the upgrade code was changed between releases. That would explain the multiple entries in the Add/Remove Programs applet.
... View more
Jun 29, 2007
11:10 PM
Actually, to clarify the last reply are you trying to get the property value using a Deferred Execution Custom Action?
... View more
Jun 29, 2007
07:25 PM
Have you tried looking at the event log, or enabled windows install logging to get more clues?
... View more
Jun 29, 2007
07:02 PM
Are you trying to set a private property (using lower case letters) or public property (all uppercase)?
... View more
Jun 06, 2007
12:34 PM
It appears that CSIDL constants are depreciated on Vista. This operating system returns common folder locations using Known Folder ID's and the shell32 function SHGetKnownFolderPath, which is new with Vista. You would need to pass the Known Folder ID FOLDERID_PublicDocuments. More information can be found in Microsoft's MSDN library: Known Folders, SHGetKnownFolderPath Function and KNOWNFOLDERID I haven't been working with Installscript functions for some time - but I'm guessing that you would need to define the prototype for SHGetKnownFolderPath in your script before referencing it.
... View more
Jun 01, 2007
01:24 PM
Quite frankly I have never had the "pleasure" of digitally signing MS Office documents. Have you seen this article before? Digitally Sign a Word 2002 Document and Programmatically Retrieve Digital Signature Information
... View more
Jun 01, 2007
06:52 AM
I am using Visual Studio 2005's bootstrapper utility. This msdn article explains more: Use the Visual Studio 2005 Bootstrapper to Kick-Start Your Installation. Additional information can be found here.
... View more
May 31, 2007
10:35 PM
Well, now it appears you have two options. Installshield 2008 allows you to sign dll's, executables, and other files as well as the traditional setup files. I don't have the IDE up and running at the moment, but I believe that this feature is available in the release configuration view. You can also call Microsoft's version of signtool.exe from a script or batch process. Signtool.exe is available if you install Visual Studio 2005 or Microsoft's Platform SDK. For further information on the use of signtool.exe go here. Note that this tool is used to sign files for compatiblity with Internet Explorer. To sign files for compatibility with Netscape or Mozilla based browsers, you will need to use Netscape's version of signtool.exe. I'm not sure that this tool is currently supported or available for download.
... View more
May 31, 2007
03:11 PM
The only usage problem I have found in the sab so far is building one click install projects where the build digitally signs media for Netscape browsers. The build process errors out with "error -4702: An error occurred creating 'install.jar'". I found that the sab was missing the file "ISSetupApplet.class", and Netscape's version of "signtool.exe". It gets confusing, because the sab is installed with Microsoft's version of signtool.exe, which is currently used to digitally sign files using Microsoft's Authenticode technology and is available with Visual Studio 2005 or the Platform SDK. The sab needs both versions of the tool to digitally sign files if you want to be compatible for both Internet Explorer and Netscape browsers. My Installshield project uses the build engine to digitally sign files for Netscape browsers only, so I was able to temporarily work around the error by a) saving off sab's current version of signtool.exe then b) copying Netscape's version of signtool.exe and ISSetupApplet.class from the IDE to the root folder of the sab. Both of these files are found in the folder C:\Program Files\Macrovision\IS2008\Support. Netscape's version of signtool is 701.kb. To digitally sign setup media for Internet Explorer compatibility, I am calling Microsoft's signtool from a script after the build is compete. I called this problem into Installshield support. Other than that, so far I have not encountered build errors which were caused by sab files being in the wrong folders, which was a problem with earlier versions of the standalone build module.
... View more
Latest posts by rchand445
Subject | Views | Posted |
---|---|---|
1939 | Jun 06, 2008 09:10 PM | |
1939 | Jun 06, 2008 05:44 PM | |
108346 | Jun 05, 2008 10:41 AM | |
780 | Dec 31, 2007 03:05 PM | |
437 | Dec 21, 2007 12:52 PM | |
2906 | Nov 21, 2007 08:47 AM | |
1154 | Jun 29, 2007 11:10 PM | |
764 | Jun 29, 2007 07:25 PM | |
1154 | Jun 29, 2007 07:02 PM | |
877 | Jun 06, 2007 12:34 PM |
Activity Feed
- Posted Re: Standalone Build availability on InstallShield Forum. Jun 06, 2008 09:10 PM
- Posted Re: Standalone Build availability on InstallShield Forum. Jun 06, 2008 05:44 PM
- Posted Standalone Build availability on InstallShield Forum. Jun 05, 2008 10:41 AM
- Posted Re: retrieve TITLE field from a file on InstallShield Forum. Dec 31, 2007 03:05 PM
- Posted Re: Stand alone patch build? on InstallShield Forum. Dec 21, 2007 12:52 PM
- Posted Re: How to remove Installer\Products registry key ? on InstallShield Forum. Nov 21, 2007 08:47 AM
- Posted Re: MSiSetProperty does not set property from custom action install script on InstallShield Forum. Jun 29, 2007 11:10 PM
- Posted Re: Why do i get 1706 ? The cd is inserted and i have access to it. on InstallShield Forum. Jun 29, 2007 07:25 PM
- Posted Re: MSiSetProperty does not set property from custom action install script on InstallShield Forum. Jun 29, 2007 07:02 PM
- Posted Re: Major problem with CSIDL_COMMON_DOCUMENTS on InstallShield Forum. Jun 06, 2007 12:34 PM
- Posted Re: Standalone build. on InstallShield Forum. Jun 05, 2007 03:05 PM
- Posted Re: Improved Digital Signing on InstallShield Forum. Jun 01, 2007 01:24 PM
- Posted Re: Prerequisites issue - installing based on the OS language on InstallShield Forum. Jun 01, 2007 06:52 AM
- Posted Re: Improved Digital Signing on InstallShield Forum. May 31, 2007 10:35 PM
- Posted Re: Standalone build. on InstallShield Forum. May 31, 2007 03:11 PM
- Posted Re: Improved Digital Signing on InstallShield Forum. May 24, 2007 11:02 AM
- Posted Re: IS 2008 Finally Released! on InstallShield Forum. May 23, 2007 04:52 PM
- Posted Improved Digital Signing on InstallShield Forum. May 23, 2007 04:36 PM
- Posted Re: Update Manager on FlexNet Connect Forum. Aug 23, 2005 08:34 AM
- Posted Re: Update Manager on FlexNet Connect Forum. Aug 22, 2005 01:22 PM