wix

WiX burn bootstrapping x86 and x64 msi's into single No-UI bootstrapper

爷,独闯天下 提交于 2020-07-04 09:04:11
问题 I have x64 and x86 versions of my installer .msi, and want to ship a single executable which simply checks the machine architecture and runs the x86/x64 MSI . The MSIs are basically identical, they install the same AnyCPU files, which I bundle in a shared .cab file so as not to double the size of the installer. So far I've tried WiX Burn, which pops up a GUI which I don't want (I just want to use the MSI GUI), and I tried disabling the burn GUI via /silent flag - this propagates this flag to

WiX burn bootstrapping x86 and x64 msi's into single No-UI bootstrapper

我只是一个虾纸丫 提交于 2020-07-04 09:03:28
问题 I have x64 and x86 versions of my installer .msi, and want to ship a single executable which simply checks the machine architecture and runs the x86/x64 MSI . The MSIs are basically identical, they install the same AnyCPU files, which I bundle in a shared .cab file so as not to double the size of the installer. So far I've tried WiX Burn, which pops up a GUI which I don't want (I just want to use the MSI GUI), and I tried disabling the burn GUI via /silent flag - this propagates this flag to

WIX installer toolset - SQL Server and IIS express installation [closed]

巧了我就是萌 提交于 2020-07-04 04:25:22
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 months ago . Improve this question I have WIX installer with some custom UI screens out of which I have one custom UI screen with two radio buttons on it.i just want to install SQL Server Express and IIS Express depending radio button selection.How can i implement this functionality. I am using

Packaging ActiveX Controls with Wix MSI [closed]

纵然是瞬间 提交于 2020-06-28 11:00:45
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Improve this question I need to create MSI using Wix. My application has Active X control . When any user gets connected or visit the URL on the web my application needs to be installed in the user machine. The path where I need to install is C:\Windows\Downloaded Program Files

Wix installer: Verify that you have sufficient privileges to start system services

别来无恙 提交于 2020-06-25 10:25:22
问题 I'm using Wix installer. When I run installer I get this error: I'm logged as administrator. I also tried create anotherone user. So I tried: 1| I add my user "Administrator" to place "Log on as a service" 2| I checked my Net.Tcp Port Sharing Service if is running 3| I get my SID 4| I added to SMSvcHost.exe.config section with my SID. Check "My administrator sid" <system.serviceModel.activation> <net.tcp listenBacklog="10" maxPendingConnections="100" maxPendingAccepts="2" receiveTimeout="00

Wix installer: Verify that you have sufficient privileges to start system services

前提是你 提交于 2020-06-25 10:24:39
问题 I'm using Wix installer. When I run installer I get this error: I'm logged as administrator. I also tried create anotherone user. So I tried: 1| I add my user "Administrator" to place "Log on as a service" 2| I checked my Net.Tcp Port Sharing Service if is running 3| I get my SID 4| I added to SMSvcHost.exe.config section with my SID. Check "My administrator sid" <system.serviceModel.activation> <net.tcp listenBacklog="10" maxPendingConnections="100" maxPendingAccepts="2" receiveTimeout="00

Weird Issue With Windows Service - Service Timing Out

痴心易碎 提交于 2020-06-22 04:11:05
问题 Hi there I have piece of legacy (VS2010) Windows Service code that I have imported into VS2017 and is causing me severe frustration. This code has worked well for about the last 6 years, however when I carry out the install and attempt to start the service the SCM comes back with a timeout error. The OnStart code is as follows: Protected Overrides Sub OnStart(ByVal args() As String) 'Instaniate the timer for the service _serviceTimer = New Threading.Timer(New Threading.TimerCallback(AddressOf

Weird Issue With Windows Service - Service Timing Out

不问归期 提交于 2020-06-22 04:09:20
问题 Hi there I have piece of legacy (VS2010) Windows Service code that I have imported into VS2017 and is causing me severe frustration. This code has worked well for about the last 6 years, however when I carry out the install and attempt to start the service the SCM comes back with a timeout error. The OnStart code is as follows: Protected Overrides Sub OnStart(ByVal args() As String) 'Instaniate the timer for the service _serviceTimer = New Threading.Timer(New Threading.TimerCallback(AddressOf

How to Reproduce MSI Install Error

二次信任 提交于 2020-06-17 13:22:46
问题 There is some way to reproduce/Inject some MSI install error? I would like my install will fail with some error 1xxx/2xxx.. (msi error codes) it doesn't matter which error code, What important that in the MSI logs I will see "Retun value 3". * I am using WIX 回答1: Not 100% sure what you need. Are you testing Windows Installer rollback and wanting to trigger it from your custom action? Or maybe you just want to write something into your MSI log file without triggering rollback? I suppose you

WIX Toolset I want the ActionData log to continue to be written as a scroll

醉酒当歌 提交于 2020-06-17 09:44:34
问题 If you add ActionData to the Subscribe event in Edit Control on Wix, the line is written and erased. I want the ActionData log to continue to be written as a scroll. 回答1: Burn : WiX Burn allows you to write your own GUI to run your installer. You should be able to implement whatever you want in terms of GUI if you go down that path. However: installers run quicker and quicker as IO becomes better, are you sure this is time well spent? I'd say just use logging and be done with it? See my