installer

WiX registry search returns C:\ instead of expected path

I'm using the following registry search in WiX <Property Id="VISUALSTUDIODIR"> <RegistrySearch Id="VISUALSTUDIODIRCMD" Type="raw" Root="HKLM" Key="Software\Microsoft\VisualStudio\10.0" Name="InstallDir" Win64="yes" /> </Property> Unfortunately, the path resolves to C:\ instead of the required path. Can someone help me...

How to make installer for Eclipse RCP

I would like to create installer for Eclipse RCP application. What is the best way to do this? It is possible? Eclipse Platform Version: 3.6.1 ...

Installing activeX controls

I have been tasked with installing a certain control across the network. I have access to wise installMaster, installbuilder, SMS installer, Advanced Installer, python, PSexec, MSIexec. I have tried on WInXP to register this control using regsvr32, i get that has sucedded in registering, however, its not getting listed within internet o...

MSI auto-repair issue work around?

I created a MSI installer by using Visual Studio 2008. I have some temp files that need to be deleted after the installation, but the auto-repair feature bothers me. The auto-repair feature will be triggered by clicking the shortcut created by the installer. I am thinking about creating my own shortcut to avoid that auto-repair. I tried ...

Deleting old file versions during an upgrade install

I am working with a pure InstallScript installation in InstallShield Pro 2010. A third-party jar file has been replaced with a newer version in our software. When an upgrade installation is run, the new jar is installed, but the old jar also remains. Bad Things ensue. How can I get InstallShield to update the contents of a folder, AN...

I deleted Windows\Installer folder, is there a chance to repair?

sorry for my english I accidentally deleted Windows\Installer folder in Windows 7 is there a way to repair this? because i can't install new MS software anymore Please help:] ...

Installer for a simple Mac OS command-line tool?

How can I build a novice-usable (clickable download) installer for a Mac OS X command-line tool, and where should the binary be installed so that a novice user with no knowledge of shell paths can just open the Terminal app and type "foo" to run the freshly installed foo tool? Can the installer also install documentation so that the use...

How to execute another NSIS installer and wait for it to finish?

I'm writing an installer in NSIS, which is kind of a wrapper for another installer, created with NSIS. The inner installer is not mine. It's created with BioWare Installer 1.03 (NSIS 2.34). It may be broken somehow, but I can't modify it! What my installer does is that it simply modifies some registry values (otherwise the "inner" instal...

ant: handling jar whose contents have file permissions 000

I am trying to overwrite the default icon of installer JAR created by IzPack, with one from my application: <jar update="yes" jarfile="${pwd}/dist/${release}_installer.jar"> <zipfileset src="${pwd}/dist/app.jar" includes="com/izforge/izpack/panels/**"/> <zipfileset src="${pwd}/dist/app.jar" includes="com/xyz/img/logo.png" fu...

Installer Project giving error in VS2k8

Hi guys, I have a installer project on VS 2k8, .net 3.5. Its giving me the following error: Error 1 Invalid icon file 'MSDN Magazine Managed Preview Handlers', located in 'Application Folder' C:\Users\jaminator\Desktop\APPreview\Handler\InstallPreviewHandlers\InstallPreviewHandlers.vdproj InstallPreviewHandlers It is a demo appli...

YET another question about installer for Java App

I just read so many posts about installers for a Java App and I'd like to get some opinions as for the best choices. My requirements aren't too long. I just need: - the installer to install Java, MySQL and run the database script file; - create a shortcut for my Java App. I'm most looking for open source/free choices. ...

com excel addin: how to uninstall older version when install newer version after product name change

Env: Visual Studio 2008, Shared COM Excel Addin, RibbonX, I use Setup project created in VS 2008 .NET framework 35 SP1 product name changes say: prod name is myProd for version 1.0, prod name is myProdX for version 1.1 When I install version 1.1, I want to uninstall 1.0 first user setting is saved in a folder A in 1.0, it will be s...

Developing for both 64-bit and 32-bit

I've read a lot on the subject of converting 32-bit to 64-bit. I use a lot of vendor hardware, and have finally obtained both 64-bit and 32-bit drivers for each. Moving from 32 to 64 seems like it will be an easy transition. The problem, however, is that we do not wish to "transition". We want to maintain both, side by side, without hav...

WiX register assemblies for COM Interop

I'm really struggling with WiX. I have .NET assemblies to install that require registration for COM Interop, AND they must be registered with another framework that requires calling a Register() method in a .NET assembly that's in the GAC. This registration method is a 'black box' with a hidden storage mechanism so I can't perform this o...

How can I get WiX to call a method in a .NET assembly as part of the installation process?

I'm migrating some existing products to use WiX 3.5 (I'm using the Votive VS integration). Some of the items I'm installing need to be registered with a third-party framework. The requirement is that I must call a Register() method in a third party .NET assembly to inform it of the presence of the items I'm installing. It expects a COM P...

Suppress warning messages about downloaded executables in custom installer

We are writing a custom installer for our software. This installer will execute several other installer that are either transferred over the network or on a usb disk. When executing these in their own process we get Windows warnings that these installers might not be safe. Is there a way to suppress this type of messages? ...

Py2Exe + FTDI driver

Is it at all possible to somehow include the FTDI driver in a py2exe installer? If not, are there any ways to combine the two together in one easy installer? ...

Distribute a binary executable of a program built with OpenCV?

I created a program in C that uses OpenCV. In addition to distributing the source and make files, I would like to distribute a Win32 binary that will run when an end-user clicks on it. Presumably I would need an easy way for the user to install the OpenCV libraries. What is the best way to do this? Should I be looking into installers, ...

How to have a "dynamic" Click Once prerequisite

Specifically, SQL Express. I have an internal winform app that, if they have a laptop, needs to install SQL Express to enable certain functionality. Right now I am installing it for everyone as it doesn't 'hurt' the desktop users outside of the time it takes. I would like to have it install SQL after I detect if they are on a laptop. ...

how to call MsiSetProperty from C# custom action

I am using Visual Studio 2008 setup project to create our installer. I want to disable msi auto-repair feature programmatically. I think call MsiSetProperty(IntPtr hInstall, string szName, string szValue); in my installer's custom action maybe a way to go. Something like: MsiSetProperty(hInstall, "DISABLEADVTSHORTCUTS", "1"); but ...