installshield-2012

Can't create non-advertised shortcut in InstallShield 2012 Limited Edition

℡╲_俬逩灬. 提交于 2019-12-10 14:49:54
问题 I've created an InstallShield 2012 Limited Edition installer project for a Visual Studio 2012 solution. I've configured in to create a "Send To" shortcut. However, it creates an advertised shortcut, so Windows doesn't actually display it in the "Send To" menu. When I created the shortcut in the installer project, I explicitly chose the "shortcut" option rather than the "advertised shortcut" option, but it creates an advertised one anyway. How can I make the installer generate a non-advertised

InstallShield XML File Changes - Change node attribute on install

喜欢而已 提交于 2019-12-07 07:49:16
问题 I am building a web service installation using InstallShield 2012, and I need to modify the Web.config file of my app based on user input. I have introduced the PromptServerAndDatabase dialog just after the DestinationFolder dialog. I have also set up the Web.config file in the XML File Changes view in InstallShield. Here is my basic web.config file structure: <?xml version="1.0" encoding="UTF-8"?> <configuration> <configSections> ... </configSections> <appSettings> <add key="DatabaseServer"

file marked as key file not getting unistalled while using installshield

£可爱£侵袭症+ 提交于 2019-12-06 06:35:32
问题 I am creating msie using installshield2012 professional.I am adding one of my project primary output to msie ,component of which is marked as key file.If i don't mark it as key file my custom installer file in project doesn't get called which is trouble for me but marking it as key file keeps the files uninstalled after uninstalling application. Is there any way to delete the key files??(permanent and shared properties are set to NO) 回答1: InstallShield MSI packages work with Windows to

Installshield LE Spring 2012 Can't find setup prerequisites

北战南征 提交于 2019-12-05 23:35:29
问题 Here's the situation: I have an InstallShield LE setup project (a couple actually) which have been working well for the last year. Recently I configured a new laptop, thus reinstalled Visual Studio 2010 and Installshield LE. Apparently, then updated InstallShield LE to the Spring 2012 edition. Now when I attempt to build I get errors about missing setup prerequisites: Error 7 -1007: Cannot copy source 'C:\Program Files (x86)\InstallShield\2012SpringLE\SetupPrerequisites\Windows Installer\3.1

Uninstall doesn't delete files within INSTALLDIR - Basic Msi - Installshield 2012

荒凉一梦 提交于 2019-12-05 09:27:11
I am creating a Basic Msi Installer using Installshield 2012 spring professional . Here i create a folder structure in Application Files as C:\Program files\Test Setup\Productname , Test Setup is the INSTALLDIR , and within this i have sub directories one of which [launch] contains the exe files . I have added these files and the directory sturcture using the Add Files and folders option in Application files menu of Project Assistant. After installing the product , when i uninstall it i find that while some exe files are deleted . few of the exe files in the launch subdirectory are not deleted

Installshield LE Spring 2012 Can't find setup prerequisites

时光总嘲笑我的痴心妄想 提交于 2019-12-04 04:20:59
Here's the situation: I have an InstallShield LE setup project (a couple actually) which have been working well for the last year. Recently I configured a new laptop, thus reinstalled Visual Studio 2010 and Installshield LE. Apparently, then updated InstallShield LE to the Spring 2012 edition. Now when I attempt to build I get errors about missing setup prerequisites: Error 7 -1007: Cannot copy source 'C:\Program Files (x86)\InstallShield\2012SpringLE\SetupPrerequisites\Windows Installer\3.1\x86\WindowsInstaller-KB893803-v2-x86.exe' to target 'C:\Users\Erik\myProject\Server Install\Express

Windows installer: Error 1001, CustomAction _xxxxx.install returned actual error code 1603

夙愿已清 提交于 2019-12-02 12:44:06
问题 Question: I have created an installer for a windows service with Visual Studio 2012 and InstallShield. The service runs fine. The installer runs fine on my development machine (windows 8 64 bit) and my XP virtual machine (32 bit). But on Windows Server 2008 R2, the same installer gets "Error 10001". No further information whatsover. The following information was included in the eventlog: Product: DbBackupServiceSetup -- Error 1001. (NULL) (NULL) (NULL) (NULL) (NULL) the message resource is

Is it possible to run a custom action only in repair mode

删除回忆录丶 提交于 2019-11-28 02:17:46
I need to run a custom action only during Repair. But I didn't find a valid condition to do so. If I specify a custom action with below condition, it runs in Modify mode as well as in Repair mode. Installed AND Not REMOVE I am using InstallShield 2012 spring. Check the REINSTALL property. Conditional statement on your custom action should look like REINSTALL<>"" For future reference check these cheat sheets: Installshield condition cheat sheet . How to add a WiX custom action that happens only on uninstall (via MSI)? I have not had the time to go through all these conditions and test them, but