windows-installer

Create setup that run without admin privileges using VS 2015 Professional

穿精又带淫゛_ 提交于 2021-02-16 18:25:09
问题 I'm trying to create a setup file (MSI) that runs without admin privileges. for that, I've tried the bellow option. I've set InstallAlluser property to false as bellow. Also set InstallAllUsersVisible to false I've also changed Default location with [AppDataFolder] After changes above properties It still required Administrator permission to execute MSI file that created using Setup project. Can you please help me to resolve this issue. Thanks in Advance. 回答1: When you open your MSI with Orca

Single Package Authoring

早过忘川 提交于 2021-02-11 15:45:09
问题 I am trying to create Single Package Authoring installation using following tutorial - http://www.egoroff.spb.ru/blog/62003.html Main wix file is following: <?xml version='1.0' encoding='windows-1252'?> <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> <Product Name='Foobar 1.0' Id='GUID' UpgradeCode='GUID' Language='1033' Codepage='1252' Version='1.0.0' Manufacturer='Acme Ltd.'> <Package Id='*' Keywords='Installer' Description="Acme's Foobar 1.0 Installer" Comments='Foobar is a

SCCM does not update software that was installed manually

喜欢而已 提交于 2021-02-11 08:08:14
问题 Client machines are all Windows 10 Pro (64-Bit). If we were to have MyCompanyApp.msi installed via SCCM, we found that we could update it successfully using SCCM. Everything normal there. HOWEVER, if I were to run MyCompanyApp.msi locally either by double clicking on the msi or running msiexec , updating it with SCCM fails. Moreover, SCCM goes ahead and runs an install as if it had never detected the previous installation. When you check Control panel, you see the product listed twice; each

SCCM does not update software that was installed manually

你。 提交于 2021-02-11 08:01:37
问题 Client machines are all Windows 10 Pro (64-Bit). If we were to have MyCompanyApp.msi installed via SCCM, we found that we could update it successfully using SCCM. Everything normal there. HOWEVER, if I were to run MyCompanyApp.msi locally either by double clicking on the msi or running msiexec , updating it with SCCM fails. Moreover, SCCM goes ahead and runs an install as if it had never detected the previous installation. When you check Control panel, you see the product listed twice; each

.NET framework 4.0 install fails

江枫思渺然 提交于 2021-02-11 06:17:43
问题 I am having issues installing a program by Cornelsen. The setup dialog prompts that NET framework 4.0 is needed in order to install. I have installed NET framework 4.8 and I have not found a way to downgrade. Any idea on how to fix the prompt? EDIT: @Filburt I have tried following your link and get this prompt FIX: Thanks to @Stein Åsmul using SuperOrca and simply changing the RegLocator Value from .../1031 to .../1033 enabled the MSI to run. 回答1: LaunchCondition : This looks like a regular

Unresolved reference to symbol 'WixUI:WixUI_InstallDir' in section for JAVA FX Deploy

隐身守侯 提交于 2021-02-10 18:37:27
问题 I created a java fx application and am customizing the MSI installer. I added my Software.wxs to the package/windows directory and I am getting the error: Unresolved reference to symbol 'WixUI:WixUI_InstallDir' in section I understand I need to reference C:\Program Files (x86)\WiX Toolset v3.11\bin\WixUIExtension.dll which I have seen documentation for in visual studios & in command line but I am using eclipse with the build.xml ANT deploy. If i do not reference any WixUIExtension's my

How to update a COM+ applications and create its msi file using PowerShell?

坚强是说给别人听的谎言 提交于 2021-02-10 17:55:43
问题 I have a COM+ application installed on my machine which has two components. This COM+ application was created using an SetupCom.exe file which was made using C# code some years bac. It used to install and create a COM+ msi file , but now I don't have access to that code, and I need to remove one component from this COM+ application - which is no longer in use. So, I searched using google and I found some PowerShell scripts that remove the components from the COM+ application, but they don't

How to hide the value of customactiondata in logs of MSI?

六眼飞鱼酱① 提交于 2021-02-10 17:44:22
问题 I have a deferred custom action which fetches a property using Customactiondata, it contains the value of password that should not be displayed in the log . Packaging tool used: WIX Custom action written in C++ I have tried the below workarounds nothing seems to be working. Marked the property and CA name as hidden Hidetarget = yes in CA definition what needs to be done? Code: <CustomAction Id="CASETLOGINFORRCSERVICES" Return="check" HideTarget="yes" Execute="deferred" Impersonate="no"

Wix Bootstrap prevent temp directory use

浪尽此生 提交于 2021-02-10 16:51:35
问题 I have builded "HelloWord" installer with the Bootstrapper Project for Wix v3 project type. My bundle.wxs is <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> <Bundle Name="Bundle_name" Version="1.0.0.0" Manufacturer="Producter" UpgradeCode="C82A383C-751A-43B8-90BF-A250F7BC2863" IconSourceFile="..\WpfForms\Assets\my_lovely.ico" >

Wix Bootstrap prevent temp directory use

谁说我不能喝 提交于 2021-02-10 16:50:03
问题 I have builded "HelloWord" installer with the Bootstrapper Project for Wix v3 project type. My bundle.wxs is <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension"> <Bundle Name="Bundle_name" Version="1.0.0.0" Manufacturer="Producter" UpgradeCode="C82A383C-751A-43B8-90BF-A250F7BC2863" IconSourceFile="..\WpfForms\Assets\my_lovely.ico" >