installshield

InstallShield “Full” Redistributable forces internet access

我是研究僧i 提交于 2019-12-12 23:19:26
问题 I used Flexera's InstallShield Express to bundle my software into a Setup.exe file. I included .NET Framework 4.7.1 redistributable (2. Specify Application Data > 'Microsoft .NET Framework 4.7.1 Full' is checked and highlighted in middle panel, and says 'installed locally' > 'Install before feature selection' is checked on bottom panel). I went onto my fresh installed Windows 7 computer with no internet access and attempted the install. It gave me the error: "An error occurred while

how add .net framework 4 in installshield 2010

我是研究僧i 提交于 2019-12-12 16:12:01
问题 i am going to make setup file with installshield 2010.(my program is written .net frame work 4). according to installation requirement in install shield, i mark microsoft .net framework 4 full full and client package but after make set up when i want to set the setup file, there is error that "you must have .net framework 4 in your system". i want to set the .net framework 4.0 during the installation in client computer, but i face with that error:you must have .net framework 4 in your system.

How to create a Patch file for a web application using asp.net

一世执手 提交于 2019-12-12 15:15:43
问题 I want to understand if there is a provision available within VS 2010 or using some third party tool for creating Patches/Hot fixes to a web application. I don't want to publish copy and replace the files / dlls methodology, Rather use a web setup that installs the application in a way such that only the files that were changed from the original application will be updated and installed in the Virtual Directory. To be more clear, I would like to do the following steps: Step-1 a) Create a Web

Call a dll function from InstallAware or InstallShield

不打扰是莪最后的温柔 提交于 2019-12-12 12:29:20
问题 Does any body know how can i call a dll function from InstallShield or InstallAware. 回答1: The user guide: http://kb.flexerasoftware.com/doc/DocumentRepository/Installation/InstallShield/InstallShield%202011%20Professional/01_Public/Product_Manual/InstallShield2011UserGuide.pdf Has a section with examples from page 694 onwards. 回答2: One must first know more about the DLL. Is it a WinPE ( native ) dll with exported functions? Is it a COM server? Or perhaps it is a .NET assembly with or without

How to pack a installation (framework + application) in one executable?

最后都变了- 提交于 2019-12-12 09:51:12
问题 I'd like to create a file 'setup.exe' that contains one application that I developed in C#, and the setup of .Net framework 4.0. The idea is: When I execute the 'setup.exe' this one will check if have the .net framework 4.0 installed on the computer, and if don't install it! Using InstallShield 2009. Anyone knows how to do this? Let me know if don't understand anything. Thanks. 回答1: Regarding setup you can use the built-in mechanism which come with Visual Studio, they allow for example to

Stopping MSI from launching an EXE in the SYSTEM context

[亡魂溺海] 提交于 2019-12-12 07:21:17
问题 I've got a problem here with an MSI deployment that I'm working on (using InstallShield). We have a program running in the background that needs to run per-user, and it needs to start automatically without user intervention. The problem is with Group Policy Object/Active Directory (GPO/AD) deployment the application is started in the SYSTEM context before anyone is logged in rather than as the user who is about to log in. The application can only run once per user, and it seems that the

How to register a dll into GAC with Installshield

拜拜、爱过 提交于 2019-12-12 05:35:08
问题 I have installshield 2016 premier and I have a .Net dll that uses a com dll. My application is a plugin so the main exe (its not my exe), is looking mydll in windows even myplugin is in program files. Manually when I use "gacutil.exe -i mydll.dll" it works. Then the dll is not need to be in windows folder. So I tried also regasm but it did not work. So i have to register mydll into gac somehow. The target machine has not gacutil.exe so i cannot call basically from command. I looked at how

Solve the error installation package is not supported by this processor type

删除回忆录丶 提交于 2019-12-12 05:29:31
问题 I am working to develop an add in for outlook 2010 with Visual Studio Ultimate 2013. To create the setup package I use InstallShield limited Edition. The setup generated works on 64 bit pc. It doesn't work on 32 bit systems. The reported error is: this installation package is not supported by this processor type The test reporting the error has been done on a windows 7 32 bit. The list of redistributables is: Microsoft .NET Framework 4.5 full Microsoft VSTO 2010 Runtime Visual studio 2010

Installshield LE with chained package

倖福魔咒の 提交于 2019-12-12 04:32:14
问题 Does anyone know if it is possible to create a chained package with LE? I can create an installation msi with my project (C#) however I need to embed the MSSQL LocalDB installation with my project msi as it is an application requirement & I don't want my users to have to do this separately. Am trying to create a seamless installation for them. Thanks 回答1: InstallShield can bootstrap/chain packages together using a feature called Setup Prerequisites. Unfortunately, InstallShield Limited

Managed DLL Method failing in installshield

一笑奈何 提交于 2019-12-12 04:23:07
问题 Ok, so I have the following class library, which I wrote in C#: public class Program { public void GetProductID(string location, out string productId) { ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Product"); ManagementObjectCollection collection = searcher.Get(); var item = new Win32Product(); //var crap = (collection as IEnumerable<ManagementObject>).Where(o => o["InstallLocation"].ToString().StartsWith(location)); foreach (ManagementObject obj in