installshield

Windows Service fails to start on install WiX/IsWix. Verify that you have sufficient privileges. InstallShield to Wix installer

时光总嘲笑我的痴心妄想 提交于 2019-12-24 18:31:48
问题 I have a problem trying to make a WiX installer of my Windows service similar to an existing InstallShield Limited Edition 2015 installer. I tried to reproduce the same existing InstallShield configuration in WiX using the IsWiX graphical tool, but when installing the generated Setup, I get an error message at installation when starting the services "Service start failure. Check that you have sufficient provilèges to start the system services". I have tried all the solutions proposed in the

InstallShield 2012 internal error

安稳与你 提交于 2019-12-24 13:14:05
问题 I have visual studio 2012 and thus am using InstallShield limited edition to create a .MSI. I have a web application in ASP.NET with webforms. I created an InstallShield project in my solution and ran through the project assistant. I added the primary output, the source files, the debug symbols and the content files in the "Files" section. I require .NET framework 4.0 and sql server 2008 to be installed and that the OS is Windows Server 2008, Windows Server 2008 R2 or windows 7 (I'm not sure

Easily adding/removing files within a Minor update

≯℡__Kan透↙ 提交于 2019-12-24 12:11:22
问题 I've been playing around with how I want to setup my upgrades for an application install I'm creating using Installshield, using basic MSI projects. I don't support any additional features/components and most of the upgrades will just be files/folders being added/removed from the default component. I seem to be having difficulty in removing files/folders when creating an upgrade. I create my upgrade by copy/pasting the original setup.ism (i.e Version 1 of my install), so that I have all the

AppDataFolder maps to wrong folder when installed by a standard user

巧了我就是萌 提交于 2019-12-24 10:38:49
问题 As part of my Installshield project, I need to place some files in the user's Roaming app data folder ( C:\Users\<Username>\AppData\Roaming\MyApp\MyFile ). For this I've created a component, and set its destination to [AppDataFolder]MyApp . While this works fine when I run as an Administrator, when I run the installer as a standard user (elevating the privileges during installation using the admin's account/password), MyFile gets copied to the Administrator's roaming folder ( C:\Users\

Installshield 2013 Installscript MSI: Wrong .msi location during Repair

99封情书 提交于 2019-12-24 09:58:35
问题 I've got a pretty simple installscript MSI project - it copies some files into a folder, updates a few registry keys and that's pretty much it. When I try to use the Repair function (either by re-launching the installer, or by choosing the app's Modify option under Apps & Features), I get the following message, when it gets to the "Copying new files" stage: "The feature you are trying to use is on a network resource that is unavailable. Click OK to try again, or enter an alternate path to a

How to include necessary dll's in InstallShield Project Assistant?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 08:46:31
问题 I have absolutely no concern at this stage of a prototype for the size of an application. What is more important is that it has everything it needs to run. My first C# app. I'm using InstallShield 2013 Limited Edition. How do I specify this in the little InstallSheild Project Assistant? I need the setup.exe that is produced (path\to\InstallerProject\Express\SingleImage\DiskImages\setup.exe) to include my dlls, somewhat like this: 回答1: Any DLLs referenced in your project will be included in

Deploying .NET Framework 4.5 with Installshield

匆匆过客 提交于 2019-12-24 08:46:24
问题 I have written an application that I deploy via Clickonce, but I want to deploy it via Installshield, so I am experimenting with it. I found and downloaded dotnetfx45_full_x86_x64.exe, the redistributable for .NET Framework 4.5, and made a Installshield prerequisite from it. I wrote a simple application that has a RDLC report that just says “Hello World”, and it needs .NET Framework 4.5, and used Installshield to deploy it. The Reportviewer needs Microsoft SQLClrTypes_x86.msi and SQLClrTypes

InstallShield with .NET 4.5 nested installation

拜拜、爱过 提交于 2019-12-24 08:39:16
问题 My installer needs to redistribute the .NET framework, but I don't want to have a setup.exe wrapper so I've written a Custom Action to launch the web installer for .NET if the end-users machine does not already have it. This works perfectly fine with .NET 4.0 and .NET 3.5 but for .NET 4.5 the .NET installer reports "waiting for another install to complete" and fails - this error msg would be correct if my Custom Action was in the Exec sequence, but I specifically placed it very early in the

vs2012打包部署

社会主义新天地 提交于 2019-12-24 06:25:27
文章目录 背景 vs中安装Installshield 下载 安装 installShield打包 新建打包工程 设置程序安装信息 设置安装必要条件 选择程序文件 设置快捷方式 设置程序安装视图 打包环境 发布程序 参考文档 背景 需打包的项目技术栈VS2012+ArcEngine10.2+DevExpress18.1 vs平台自带打包工具InstallShield,但是需要另外安装 InstallShield可以免费试用(即免费限制版本),只需要填写信息申请试用 vs中安装Installshield 下载 安装 直接安装即可 installShield打包 新建打包工程 新建打包工程的具体步骤:右键解决方案→ 添加 → 新建项目 → 其他项目类型 → 安装和部署 →选择 InstallShield Limited Edition Project 设置程序安装信息 展开安装工程目录,选择 Project Assistant 设置安装必要条件 选择程序文件 在生成安装文件后程序包中包含了与UI层进行交互引用的其它层的引用文件,但不会生成和UI层(启动层)没有相连的组件,我们只能通过手动添加。如图标、文件、帮助文档等等。 如果调用的DLL需要注册,步骤如下:右键dll→点击 properties →如下图设置 设置快捷方式 设置程序安装视图 即选择程序安装的步骤和图文配置。 打包环境

InstallScript can not read text file containing result from command prompt

余生长醉 提交于 2019-12-24 06:08:26
问题 I am writing a Installscript function to run a command in command prompt, redirect the result from console to a text file, then read the text file for information. // send command method STRING szCmdPath, szCmdLine ; szCmdPath = "C:\\WINDOWS\\system32\\cmd.exe"; szCmdLine = "/c wslconfig /l > D:\\output.txt"; LaunchAppAndWait(szCmdPath, szCmdLine, WAIT); the send command method did not run the command with szCmdLine as I desired, it failed to recognize the command and produce the following