installer

Include (bundle) a JRE within the NetBeans Installer?

落爺英雄遲暮 提交于 2019-12-23 01:19:39
问题 I developed a Java Swing application on the NetBeans Platform (RCP). I want to include the Windows JRE with the installer that NetBeans generates in case a PC does not have JRE installed, but I do not know how to do this. I have tried to follow the following instructions but failed (I find that the instructions assume that you know absolutely everything on JDK and JRE, for example I would get the message 'pack200' is not recognized as an internal or external command...it would seem that some

Stopping display of custom dialog boxes in WiX uninstall

不问归期 提交于 2019-12-22 22:49:11
问题 I have a WiX installer project that utilises a custom dialog box to ask for parameters to update a web.config file and run a database script on install. Everything works correctly and the application is installed and runs correctly. However, the custom dialog box is also displayed when I uninstall the software and it certainly doesn't need to be (as I'm not updating a web.config file). Is there a way to suppress the custom dialog when the application is being uninstalled? (I should also

WiX call app on uninstall before User prompt “close manually”

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-22 13:58:28
问题 I got an installer which installs an application and starts this one right after the installation was finished. This works properly for me. But now I want to stop that application while uninstalling the application, i don't want the user to be prompted to close applications manually. This shall work full automatic. I ned to do this using a custom action, the WM_CLOSE message will not work in my approach (really, i tried it a couple of times). I thought that this can't be that difficult, but I

Is PackageMaker considered the standard for Mac OS X software installation? Or is there something else out there?

别来无恙 提交于 2019-12-22 11:59:12
问题 I've put together my very first package with PackageMaker (for a system service), but I am not happy about several faults: Frequent crashes while applying target permissions to my source files Package source files are not automatically or easily refreshed File filter does not work Is there something else out there more capable of this task? Free is not a requirement. 回答1: Yes it is, and yes it's buggy. Apple uses the command line version pretty much exclusively so the GUI tends to have the

Include JRE in my Jar for Swing app [duplicate]

早过忘川 提交于 2019-12-22 11:43:16
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to deliver my Java application with a particular JRE? I have developed Java desktop application in Swing and created jar for that. This is working fine by double click on it, in my OS (Windows). Now I want to run same jar file in some other system (Different Operating system), that don't have any Java related software. How to include JRE in my Java application that will make my application to run in any

Include JRE in my Jar for Swing app [duplicate]

瘦欲@ 提交于 2019-12-22 11:42:11
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to deliver my Java application with a particular JRE? I have developed Java desktop application in Swing and created jar for that. This is working fine by double click on it, in my OS (Windows). Now I want to run same jar file in some other system (Different Operating system), that don't have any Java related software. How to include JRE in my Java application that will make my application to run in any

Why does my application triggers the Installer of another application?

南楼画角 提交于 2019-12-22 10:10:18
问题 When using a legacy VB6 application and opening some specific forms inside that application, the Windows Installer belonging to Microsoft Navision (which is installed on the same machine) pops-up like in the attached image. It happens every time, but on this machine only. The VB6 application has absolutely no relation with Navision! What can be done to avoid this anomalous interaction between the two applications? 回答1: This is down to a corrupt windows installer database and your app is using

Executing Custom Actions immediately in WIX

*爱你&永不变心* 提交于 2019-12-22 09:56:58
问题 Is there any way to execute a custom action in WIX as soon as the first dialog (welcome) appears? The requirement is to check prerequisites, and some of those require a custom action. The custom action could be executed as we click to the next dialog, but then the standard WIX prereqs are determined apart from our custom prereq. (The custom action we need is to check that IIS 6 Metabase Compatibility is turned on and a registry search does not work on x64 machines with a 32-bit installer) 回答1

how can get the path from installer and how set in my app?

好久不见. 提交于 2019-12-22 09:56:45
问题 i am writing a win app and now i want to make setup for my app,my code is: Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\Cu­rrentVersion\Run"); rk.SetValue("MyAppName", @"C:\WhereMyAppIs\MyApp.exe"); now how can get the path from installer to set it??? thanks. 回答1: If you use Visual Studio, you can right click on the setup project -> View -> Registry and then set the registry key you like. Check out this sites: msi - Set

Create Batch file for iexpress

我是研究僧i 提交于 2019-12-22 09:22:31
问题 I am trying to use iexpress to run my batch file which will execute the 2 exe & 1 msi files for me. when i try to do it manually, it works. following is the code in my batch file. Start /wait %CD%\1.exe /q Start /wait %CD%\2.exe /q msiexec.exe /i "%CD%\3.msi" but this doesn't seem to be working when i create an exe file from iexpress. Reference Above mentioned article has some code(to copy files to temp folder) & but i am not able to understand the syntax. MKDIR %Tmp%\<UNIQUE PRODUCT NAME>