installer

Is Hybris installer used for demonstration purposes only?

旧街凉风 提交于 2019-12-12 04:55:25
问题 I've spent a week trying to understand how Hybris installer works and I thought I could create any type of application with recipes. However my teammate said that those recipes are useless for dev or production setup. But why installer folder is a top folder in Hybris installation? Only for demo? 回答1: Your teammate correct, installer used for creating demo system. 回答2: In the Hybris WIKI are two sites that explain this one: Installing Hybris Using Installer Recipes Installing SAP Hybris

How can change a text on a label in COMPONENTS PAGE when using MUI2 for NSIS?

前提是你 提交于 2019-12-12 04:42:47
问题 I want to add a link somewhere on the components page. I tried the method presented here, while it is indeed working for the WELCOME PAGE, it causes the installer to crash when I'm adding it to the components page. The thing I want to add is a text that contains an underlined blue word which opens a url on the default browser when clicked on. I want to add it to the existing components page. Thanks, J 回答1: I solved it using some help from the nsis forum the relevant links are: Add Link to

Install usb device without manager prompt

笑着哭i 提交于 2019-12-12 04:37:16
问题 We have a usb device and the drivers (.inf, libusb.dll, libusb.sys) and can install it using Windows' Device Installation Wizard (by pointing to the .inf file). However, we need to install the drivers without using the wizard (passively, so the user doesn't need to do anything). Does anyone know how this can be achieved? 回答1: You added the "installer" tag, so I'm assuming you're talking about some kind of installation package, like Windows Installer, InstallShield InstallScript, etc. If that

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

installing 3rd party applications in C# installer

爷,独闯天下 提交于 2019-12-12 03:49:46
问题 I've created an installer in VS2010 for installing my application, but it has some 3rd party prerequisites such as python. I've tried to include the additional installers as embedded resource, extract them as files and run them (as custom actions). It works, but seems like running 2 installers at the same time is impossible, so when these installers are installed from my installer, I get an error. How can I install these 3rd party applications during my application installation? (The

Building a multi-arch installer with msbuild

大憨熊 提交于 2019-12-12 03:26:15
问题 I'm building a multi-architecture installer for a C++ program with NSIS. I'm using Visual Studio 2010. All is well except I don't know how to make the installer depend on the build for all architectures. I have created a project to run makensis as a build step, and configured it to depend on all other projects in the solution. I'm currently building for Win32 and X86_64 architectures. The NSIS project is only built as a part of X86_64 configuration. But it packs files built in both X86_64 and

How to build a dmg Mac OS X file (on a non-Mac platform)?

╄→гoц情女王★ 提交于 2019-12-12 03:18:25
问题 Is it possible to build a .dmg file (for distributing apps) from a non-Mac platform? And if yes, how? 回答1: It does seem possible to create DMG files with some third party tools. A quick google search reveals at least a few commercial tools: TransMac MagicISO Not sure about any OSS/freeware options, but it does at least seem possible if you are so inclined. Edit: I also forgot about MacDrive, which is another great tool for working with HFS+ filesystems under windows. Since a DMG is basically

Alter the z-index of windows on a NSIS MUI2 Page

随声附和 提交于 2019-12-12 03:16:10
问题 Is it possible to set the z-index of the header bitmap window on a NSIS MUI2 Page? I am trying to make a window that contains a large bitmap sit behind the other windows(labels, checkboxes etc.) on the MUI2 Pages MUI_PAGE_WELCOME & MUI_PAGE_COMPONENTS. I have seen I could use SetWindowPos but how do I access/find the HWND associated with the header bitmap? Also is there a way to set a static, label and checkboxes background to transparent? Maybe theres a Win32 flag I can use, or should I use

check for port availability using iphlpapi dll in nsis

爱⌒轻易说出口 提交于 2019-12-12 03:14:47
问题 Could anyone please let me know how to check for port availability using iphlpapi dll in nsis. 回答1: You can have a look at Calling an external DLL using the System.dll plugin from the NSIS wiki. 来源: https://stackoverflow.com/questions/9292100/check-for-port-availability-using-iphlpapi-dll-in-nsis

Wix v3.7 - Error Writing Registry Values

不打扰是莪最后的温柔 提交于 2019-12-12 02:34:41
问题 I'm creating an installer using wix and I'm having problems writing to the registry. Here is my RegistryValue element: <Component Id="CMP_odbcreg" Guid="{115B002E-F4C9-48CD-8E1C-E8803B16AE69}"> <RegistryValue Id="rg_psql" Root="HKLM" Key="SOFTWARE\ODBC\ODBCINST.INI\ODBC Drivers" Name="PostgreSQL" Value="Installed" Type="string" KeyPath="yes" Action="write"/> </Component> Nothing is being written to the registry. This component is in my main install feature, so it should always write to the