installer

Service failed to start error 1920

不打扰是莪最后的温柔 提交于 2019-12-18 07:22:11
问题 On some machine we have the following error at service install: "Service ... failed to start. Verify that you have sufficient privileges to start system services." Service is installed fine tho, just that it can't be started as Network Service from Services.msc. Service starts and runs good if started from console it's executable... Same thing happens with another service started as Local System. On other machines everything is fine. Service starts as network service with no problems. We

Always update files in minor upgrade (how to)

百般思念 提交于 2019-12-18 06:59:41
问题 I am creating an install package using InstallShield Pro X. The upgrade works properly. However, the product manager wants the upgrade to replace all files on an upgrade even if the create date != modify date on the file. I see that to do this I need to set REINSTALLMODE=vamus rather than vomus. However, I don't see how to tell InstallShield that I want it to use that setting. By default setup.exe always passes vomus to windows installer. There is a property in the InstallShield project named

System.BadImageFormatException When Installing Program From VS2010 Installer Project

余生颓废 提交于 2019-12-18 06:55:19
问题 I am getting this error when trying to install a Windows Service from a VS2010 .NET 4 Installer project: "Exception occurred while initializing the installation: System.BadImageFormatException. Could not load the file [file name].exe or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded." I can't figure out what is causing this. All the projects in my solution are compiling against .NET Framework 4 and the installer

Service already exists (when it clearly doesn't)

亡梦爱人 提交于 2019-12-18 03:59:08
问题 I'm trying to create an installer for a Windows Service I developed. This installer has a custom UI at one point and it's the first time I do something like that so I installed and uninstalled the service a few times to make sure everything was like I wanted to in the installer. Now my issue is that when I try to install the service, it fails with Error 1001: Specified service already exists, but the service is listed nowhere in the registry, the services.msc console, or by sc query . Can

Create Setup/MSI installer in Visual Studio 2017

偶尔善良 提交于 2019-12-17 23:30:21
问题 I have written an outlook add-in VSTO in Visual Studio Pro 2017 (VB.NET). I have published it which creates a setup.exe which is OK but I would like to create a proper installer that copies the files locally and can be run silently etc. How do I go about doing this? When I go to create new project there is no installer project option. Thanks 回答1: You need to install this extension to Visual Studio 2017/2019 in order to get access to the Installer Projects. According to the page: This

Installer generator written in Java?

隐身守侯 提交于 2019-12-17 22:09:43
问题 I'm looking for a free cross-platform installer generator that is fully Java-driven (meaning workflow and plugins are written in Java). Ideally the installer should download the JRE on-demand instead of bundling it directly into the installer. Does something like this already exist? Please note that InstallAnywhere no longer offers a free edition. 回答1: IzPack Antigen Launch4J Antstaller Java Service Wrapper Lift Off Java Installer JSmooth VAInstall Packlet Mini Installer 回答2: lzPack is a good

How to make installer of java desktop application for multi-platform?

孤人 提交于 2019-12-17 18:24:44
问题 How could we made a jar file's installer, which can run on multi-platform. Is there any simple way, because I don't know Java much well. Balwant 回答1: Installer tools for Java have been dealt with in quite many questions on SO, and most options have probably been mentioned already: What’s the best way to distribute Java applications? Java Application Installers What is the best installation tool for java? See also other questions tagged java+installer. If a commercial tool is ok, the best

How to make installer of java desktop application for multi-platform?

我的未来我决定 提交于 2019-12-17 18:21:10
问题 How could we made a jar file's installer, which can run on multi-platform. Is there any simple way, because I don't know Java much well. Balwant 回答1: Installer tools for Java have been dealt with in quite many questions on SO, and most options have probably been mentioned already: What’s the best way to distribute Java applications? Java Application Installers What is the best installation tool for java? See also other questions tagged java+installer. If a commercial tool is ok, the best

How to run a file before setup with Inno Setup

谁说我不能喝 提交于 2019-12-17 18:20:22
问题 Is it possible to run a file with Inno Setup, before the setup beginns? Documentation 回答1: Yes it is. In the [code] section run the file in the InitializeSetup() function. This example launches notepad before the setup runs. function InitializeSetup(): boolean; var ResultCode: integer; begin // Launch Notepad and wait for it to terminate if Exec(ExpandConstant('{win}\notepad.exe'), '', '', SW_SHOW, ewWaitUntilTerminated, ResultCode) then begin // handle success if necessary; ResultCode

Is WiX changing the permissions on my Notes.ini file?

青春壹個敷衍的年華 提交于 2019-12-17 17:14:49
问题 I'm using a WiX installer to install a Notes plugin. I use the IniFile action to set the fields in notes.ini telling Notes to load my plugin. I'm using WiX 3.7.1224.0 <IniFile Id="HLBridgeDLLINI" Action="addTag" Directory="LOTUSNOTESINIDIRECTORY" Name="Notes.ini" Section="Notes" Key="AddInMenus" Value="HLBridge.dll"/> <IniFile Id="HLClientDLLINI" Action="addTag" Directory="LOTUSNOTESINIDIRECTORY" Name="Notes.ini" Section="Notes" Key="EXTMGR_ADDINS" Value="HLClient.dll"/> Before running the