installshield

InstrallShield Basic MSI uninstall does not display a dialog with Finish button

廉价感情. 提交于 2019-12-11 05:06:07
问题 I used InstallShield 2018 and created a 'Basic MSI' project. When uninstalling the product, it confirms if I want to proceed with the uninstallation and once confirmed starts uninstalling. But then it simply vanishes without showing a dialog at the end where you can click on the Finish button. As a result the user does not know if the uninstall is done or not or got aborted or something. In my IS 2018 'InstallScript MSI' project the dialog with the Finish button is displayed at the end which

Install Dotnet after installing own package in installshield?

纵饮孤独 提交于 2019-12-11 03:36:30
问题 I have problem with Install-Shield. I create package to install my project and then use JS (JavaScript in Install-Shield) for checking Dotnet frame work and if it isn't exist install Dotnet. so that JS work perfectly and checking registry and then go for Donet Setup . Here is HS: function RunDotNetEXE(hMSI) STRING svPath; begin svPath = SRCDIR^"\\Req"; RegDBSetDefaultRoot (HKEY_LOCAL_MACHINE); if (RegDBKeyExist ("SOFTWARE\\Microsoft\\.NETFramework\\v3.0")!=1) then if (svPath!="") then

building msi installer and separate installation files

倾然丶 夕夏残阳落幕 提交于 2019-12-11 03:12:31
问题 Is it possible to build msi file using installshield, so that I have one small msi that is installing files from separate folder, instead of having one biggler msi file that contains everything that is to be installed? The point is having msi installer and being able to replace files that are to be installed (if i want to update them sometime later) instead of rebuilding the whole project once i change some updated files. 回答1: This is not supported by MSI packages. It doesn't matter if the

Installshield 2011 - crashes at build between “Embedding manifest” and signing

自作多情 提交于 2019-12-11 03:10:08
问题 Since upgrading to a windows 8 & 8.1 machine all my InstallShield projects began failing at signing. The error occurs after or during the embedding manifest into setup.exe, with the following error: Exception ACCESS_VIOLATION (0xc0000005) at address 0x76b34db0 trying to read address 0x00000001. File : C:\Program Files (x86)\InstallShield\2011\System\isdev.exe Version : 17.0.0.714 Exception : c0000005 Address : 76b34db0 Access Type : read Access Address : 00000001 ... When I opted to debug

Automatic way to update component code in InstallShield Basic MSI project

这一生的挚爱 提交于 2019-12-11 03:04:24
问题 I have InstallShield 2013 Basic MSI project Is there an automatic way using a tool or script to automatically update all component code in the project ? 回答1: First question : why do you want to do that? A component GUID is set in stone for all absolute paths it references. See a description of this here: Change my component GUID in wix? If you are familiar with COM automation , you should be able to automate the generation of new GUIDs in your project using the Installshield automation

Grant “Log on as a service” permission AND service Logon Account during installation(Installshield 2010)

荒凉一梦 提交于 2019-12-11 02:28:23
问题 I`m developing install application via Installshield Basic MSI Project I have a little problem when granting "Log on as a service" permission (Control panel -> Administrative tools -> Local Security Settings) In Windows server 2003, NTRights.exe works fine. In Windows server 2008 and 2008 R2, NTRight.exe also works fine but "NTRights.exe" is just part of "Windows server 2003 Toolkit" I want to use another method. Can Anyone do same thing using another way? In a Service Panel, I have to set

How to disable an extra window to restart system even after selecting not to do so in files in use dialog in installshield

随声附和 提交于 2019-12-11 02:27:05
问题 I am doing an upgrade for the existing exe file using installshield. when installing the update , in files in use dialog I select the option to automatically close and restart the application instead of the other option to reboot the system. But I get an extra window which tells me to restart the system again after installation is complete. How to disable this window? Please help :) 回答1: You can try to run the installation silently with REBOOT=ReallySuppress (update the paths). Please note

Creating a setup.exe in InstallShield in Visual Studio

旧时模样 提交于 2019-12-11 01:19:16
问题 Please tell me whether it is possible to create a file named setup.exe. I want to have the end user to a single file installer. At this point, I click 'build' and the output like this: I would like to output was a setup.exe. If it is not possible, then the setup.exe file.msi basic msi | 2010 premier 回答1: Sure, you just use the release wizard: Release Wizard When you get to the Media Type dialog select "Network Image" , on the Release Configuration dialog select "Compress All Files" and on the

Installshield after successful install, does not launch exe

。_饼干妹妹 提交于 2019-12-11 00:25:38
问题 I am using a single MSI project. After a successful install, I select the checkbox to launch my software, and I click finish. It does not launch my software, even though I checked it and clicked finished. The only thing I found so far towards ensuring the launch directory was valid, was the property tab for the Checkbox for the "Launch Product". Its property is set as "LAUNCHPROGRAM". Do I have to provide the exe source path for it to launch? I do not see anything related to it. I would

Can ClickOnce or InstallShield setup SQL Server or SQL Server Express?

淺唱寂寞╮ 提交于 2019-12-10 21:24:50
问题 Can ClickOnce or InstallShield setup or configure SQL Server or SQL Server Express specifically adding an sa password, enabling named pipes, granting permission to read from folders, adding primary database ( .mdf files) needed for my client application. Or do I need to hard-code those functions from my client app? 回答1: Can ClickOnce do it? Yes, but...... ClickOnce can install dependencies like this, but due to the nature of the SQL Server install I personally would avoid doing it that way.