Tagged Questions
1
vote
1answer
19 views
In wix repairing a setup throws an error
To repair an uninstall condition:
<Condition Message="True">(LAUNCHFROMEXE = "True")</Condition>
This condition throws an install error. But use below condition:
<Condition ...
0
votes
1answer
31 views
Condition based file installtion in x64 and x86 machines
Hi how can I update my installer script condition to install the following files on
x86 and x64 machines.
<Component Id="Comp.Comp1" Guid="*" >
<Condition><![CDATA[VersionNT < ...
0
votes
2answers
45 views
Autogen guid (*) in Windowsinstaller cause ICE08 error
Two component tags in my wxs file is as folllows
<Component Id="Comp.Comp1" Guid="*" >
<Condition><![CDATA[VersionNT < 602]]></Condition>
<File Id="File1" ...
1
vote
1answer
48 views
Use short name of Program Files in wix
I am using Wix to create an msi for an application
An environment variable is set in the AppName.wxs:
<Component Id="MyAppEnvVar" Directory="TARGETDIR" Guid="eabcc802-6853-4db8-b827- ...
0
votes
1answer
45 views
WiX: Setting values as a Composite of Multiple Properties
Is it possible, and if so how can I create a single value from multiple properties within a WiX installation project?
Specifically, I have some dialog like this...
<Dialog ...
1
vote
1answer
164 views
WiX Burn Bootstrapper - Can't detect registry key
I'm installing a product that requires the Visual C++ redistributables (x64). First my bootstrapper attempts to detect if vcredist (x64) is already installed...
<util:RegistrySearch Root="HKLM" ...
1
vote
1answer
78 views
WIX relative path ends up being too long
I am getting errors from light.exe that indicate it is having problems locating one of the files in my setup project. Turns out on the PC in question the relative path I am using exceeds 260 ...
1
vote
1answer
48 views
manual inputs embed in msi using wix
I would like to install a third party executable that expects some user inputs on a user machine.To this aim, I would like to make the installation silent.
Is there a way to achive using wix?
0
votes
1answer
125 views
Wix: Install MSMQ component
I have a .NET project which has 2 components which communicate over MSMQ. I'm building my installer using Wix because Microsoft has inexplicably ceased support for installers in Visual Studio 2012. ...
1
vote
1answer
106 views
Register 64bit com component from 32bit wix script
I have WIX script that install and register 32bit COM component for IE, also I want to include into the same package the 64 bit COM component for IE without creating additional packages (didn't want ...
2
votes
1answer
84 views
WIX: reference a source file but not install it to the destination computer
I'm compiling an installer using Wix, and I'm trying to make it install a scheduled task. I've created an XML file with the details of my scheduled task (called BackupComplete.xml - using the export ...
1
vote
0answers
59 views
Grant service start / stop permissions to existing service using WiX
My WiX installer installs ServiceA which runs as NetworkService. During its run time, ServiceA has an occassional need to restart an already installed ServiceB. However, ServiceB does not grant ...
0
votes
1answer
236 views
Wix project template doesn't appear in VS2012 after installing it
I have installed WiX 3.7 to create installer in VS 2012. But WiX project template is not coming in VS2012 Prof edition.
I have tried some resolution available in web, but no result.
How can I solve ...
2
votes
1answer
43 views
How to remove previous application after upgrade?
I made a web application upgrade which is perfectly upgrading the app as well as registry and IIS entry. But after upgrade in registry it is replacing previous version(in IIS also). But in 'Program ...
-2
votes
1answer
177 views
WIX :: How to install file in LocalLow folder
Is there way to install file in LocalLow folder using WIX script?
Updated:
I can put the following code for XP
<Directory Id="AppDataFolder">
<Directory Id="ApplicationData">
...
2
votes
1answer
143 views
How to install a Windows Update from an MSI package
Is there a way to install Windows Updates from an MSI package installation??
I am authoring an MSI package in WiX which requires some Windows Updates to be installed in the machine.
0
votes
2answers
443 views
WIX Installer Adding and Removing files in LocalAppDataFolder
I have an Internet Explorer Add-On that generates some files in LocalAppDataFolder\Microsoft\Windows\Temporary Internet Files\CompanyName\AddOnName\
I have a WIX installer for the application that I ...
0
votes
0answers
27 views
WiX ordering components definitions changes the installer behaviour
I am using WiX 3.5 to author a MSI package. It installs two WebApplications in IIS. WebApp1 and WebApp2. The thing is that depending on the order in which i declare the components for the WebApps, the ...
0
votes
3answers
291 views
Install Service with custom credentials
I have a Service to install by my installer. On UI user can choose to install this service as LocalSystem or with specified user credentials.
My Wix code looks like this:
<Component ...
1
vote
3answers
87 views
Ennforcing mutually exclusive install on Windows?
We have Product A and Product A'. They're nearly identical and easily confused. For legal reasons, it is necessary to keep these subtly different. For technical reasons, it is not possible for the ...
0
votes
1answer
75 views
Merge module upgrade problems
I have an MSI/WIX installer project that consists a merge module, which installs drivers for some custom USB hardware.
New versions of the installer are produced regularly, but the merge module has ...
1
vote
1answer
67 views
Faking the presence of a USB device in order to test driver installation on Windows
I've been asked to help with some problems that a company are having with an Windows installer they have that includes some custom driver installation for some hardware they make.
I've got access to ...
0
votes
1answer
149 views
CustomAction log name error 0x8007007a in WiX
I am currently working on a custom action in a DLL that I export to be used by a WiX installer and I recently discovered the following error in the log when I ran the installer:
...
2
votes
2answers
82 views
Maven Multiple platform dependent Packages
I have written an application in Java that can be used on both Linux and Windows. Currently by running mvn package, my maven build system will generate a .msi using WiX.
Is there a way of creating ...
1
vote
1answer
386 views
WiX Bootstrapper run executable on exit
I'm using the WiX (3.6) Burn bootstrapper to bundle a prerequisite component (Bonjour) with the setup for my program. It works great and all, but:
I'd like to add a step to the end where I run an ...
0
votes
1answer
258 views
C# - How to start a non elevated process from elevated Process [duplicate]
Possible Duplicate:
Start non-elevated process from elevated process
Story:
Standard-User launches a MSI As Administrator and Msi launch a Process(Lets say Sample.exe) on setup finish.
...
0
votes
1answer
132 views
ADDLOCAL property getting set during a PATCH
I have an MSI package which installs many features that the user can select for installing in his computer. I also have an MSP patch package that updates some components and fixes some bugs in the ...
0
votes
1answer
2k views
Can't start windows service with WiX
I have the following WiX project to install my service:
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="GUID" ...
0
votes
2answers
171 views
Preventing Wix from installing All Features in my Product?
After installing a MSP patch, Windows Installer decides to install ALL Features provided in the initial MSI. How can i prevent MSP patch from installing All available Features?
Features requests show ...
0
votes
1answer
84 views
Wix get user from a running Windows Service
I'd like to know if there is any built-in functionality to obtain the User that is running a Windows Service using Wix 3.5. I have seen this post where it's stated that there is nothing built into Wix ...
2
votes
1answer
125 views
MSI: An Application is running during silent update
I have an application that was installed as MSI package, I have next version of application that I plan to install in silent mode by special program.
When application is running I catch an issue: not ...
2
votes
1answer
344 views
Convert visual studio install project to WIX
I was wondering if anyone knows how easy it would be to convert an install project created with the standard visual studio 2010 install project to a WIX project.
This install project has a custom ...
0
votes
1answer
117 views
Per Machine Install using A Standard User Account
I want to know about the possibility of an per machine install using a standard user account , the installer asks me for an admin password when i want to go for a per machine install logged in as a ...
1
vote
1answer
559 views
Using the firewall extension in WiX
I'm trying to write a WiX script that uses the firewall extension to WiX, and it doesn't seem to find the extension dll (I think).
The error I'm seeing is this:
The File element contains an ...
0
votes
2answers
387 views
How do I launch a .jar file with desktop shortcut (targeting a specific jre)
I'm trying to create a desktop shortcut that will launch our .jar file. The current WIX build file below gives the error:
[exec] installMsgs.wxs
[exec] ...
3
votes
3answers
234 views
Where are file counts kept?
When I install an application which has a file somet.txt it installs it to a certain location C:\temp and windows keeps a register that it has been installed 1 time.
If another application installs ...
2
votes
1answer
182 views
Wix catch Windows Installer error message by INSTALLUILEVEL_FULL mode
How can I catch the default error message of windows installer? It look like silent mode, have no any message are showed.
For example, when another msi is in progress, installer will show error ...
2
votes
1answer
724 views
WiX x86 / x64 build using Platform attribute
I'm using following define to make my setup script flexible according to the build environment.
<?if $(var.Platform)=x64 ?>
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ...
1
vote
1answer
265 views
WiX localization - Desktop/Program menu short cut not replaced in Upgrade
We have recently included localization support for simplified Chiense (zh-cn) in Windows Installer using WIX 3.5. The current version of our product is 1.3.0 and in old version (1.2.0) we do not have ...
0
votes
1answer
363 views
WiX call app on uninstall before User prompt “close manually”
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 ...
2
votes
1answer
446 views
Registering 32 and 64 bit DLL in a single MSI using WiX
I need to create a SINGLE Windows installer that performs the following tasks when it is run on the target m/c:
Runs a service
Registers a 32 bit DLL
Stores the 32 bit and 64 bit log4cxx.dll ...
0
votes
0answers
137 views
Setting Writable Permission only for Administrators inside PROGRAM_DATA folder
I've been experimenting lot of headaches with implementing some behavior with permission in Windows 7.
I have the following directory structure (inside PROGRAM_DATA):
C:\ProgramData\foo\
...
6
votes
2answers
600 views
Detect and require a Windows QFE/patch for during installation
Our WiX installer deploys a .NET 4.0 WinForms application to Windows Vista and 7 desktops. The application includes a Portable Class Library that requires a .NET patch (KB2468871). We need to install ...
3
votes
1answer
284 views
How to get elevated permission to edit a registry CLSID, with in a WiX fragment
I am trying to set windows desktop search to use a different html filter other than the system default filter(nlhtml.dll). When I look up the PersistentHandler ...
0
votes
1answer
305 views
How to install IIS7 on Windows 7, 32bit using WIX3.5 MSI setup
I am new to WIX and i am trying write a wix msi for install the IIS7 on windows 7 32bit pc.
is any one tried this, if yes please help on this, sample code also will help me lot , thanks
2
votes
1answer
134 views
I would like to detect if a specific Microsoft Hotfix has been installed on a user's system using WIX. What's the simplest way to achieve this?
I have been doing a bit of reading on this, but I am starting to suspect this is more and more work.
I thought I would be able to simply scan the registry for the hotfix in question. In attempting to ...
2
votes
1answer
443 views
Wix custom action to remove older version installed with INF file
I am working on a project that uses WIX to install an application. One of the requirements is to remove the old version before installing the current one. The old version is not MSI-based, it is ...
0
votes
1answer
188 views
Windows Installer in XML custom actions
How to link a C# dll to a WiX program using custom action.
I am new to WiX so I tried what I could.
I used the following tags.
<Binary Id="Uninstall" SourceFile="..\..\uninstaller.dll"/>
...
2
votes
1answer
495 views
Wix: Install Windows Service with user specified service name
I have an installer project to install a Windows Service. This installer contains a UI Dialog to allow user to specify the Service Name. This Service Name is stored to a public property. Installer ...
2
votes
1answer
665 views
WiX build warning: The Media table has no entries
I'm trying to create a simple installer for a .net application in WiX. I installed Votive and am using the basic template wxs file it creates. When I compile it I get warning LGHT1076: ICE71: The ...


