prerequisites

In Visual Studio 2012 where does ClickOnce “Publish” expect to find the .Net 4 client profile?

最后都变了- 提交于 2019-11-29 14:32:41
The Publish feature stopped working once I installed Visual Studio 2012. Publish cannot find the prerequisite Microsoft .Net Framework 4 Client Profile (x86 and x64). Previously in Visual Studio 2010 this worked fine. I use 64-bit Windows 7. The exact Visual Studio 2012 error message reads: Error 104 - To enable 'Download prerequisites from the same location as my application' in the Prerequisites dialog box, you must download file 'DotNetFX40Client\dotNetFx40_Client_x86_x64.exe' for item 'Microsoft .NET Framework 4 Client Profile (x86 and x64)' to your local machine. For more information, see

Installing .NET Framework with my app using MSI

纵饮孤独 提交于 2019-11-29 08:13:21
I have created a setup project in VS2008. My WinForms app uses .NET 2.0, so I chose .NET 2.0 Prerequisity and built the setup project. When I run my Setup.msi on a clean PC, it correctly detects that the .NET is missing and asks if it should be installed. After a successful installation of the .NET, the installer simply exits and doesn't continue with installation of my app (I think it should). When I run the MSI file on a PC with .NET already installed, my app installs correctly. Is there any way how to install .NET 2.0 and my app together in one step? How did you install the product? The

Installing .NET Framework with my app using MSI

和自甴很熟 提交于 2019-11-28 02:03:38
问题 I have created a setup project in VS2008. My WinForms app uses .NET 2.0, so I chose .NET 2.0 Prerequisity and built the setup project. When I run my Setup.msi on a clean PC, it correctly detects that the .NET is missing and asks if it should be installed. After a successful installation of the .NET, the installer simply exits and doesn't continue with installation of my app (I think it should). When I run the MSI file on a PC with .NET already installed, my app installs correctly. Is there

How to include prerequisites with msi/Setup.exe in WIX

白昼怎懂夜的黑 提交于 2019-11-27 08:47:42
I'm trying to combine my package in a single setup EXE file and upload it to the Internet. I have created a Microsoft bootstrapper that contains Setup.exe with project MSI output, and pre-requisite .NET Framework 2.0, Windows Installer 3.1 , Visual C++ 2005 redistributables, and Microsoft ReportViewer . I have created a setup project using Visual Studio 2008 . Now I'm trying to create a single compressed setup using WiX 3.6. I have installed it in Visual Studio 2008. I have attached the setup.exe and MSI file using following commands. <ExePackage SourceFile ="setup.exe" Compressed ="yes"/>

What is the best practice to create MSI with some other child MSI as prerequisite?

落花浮王杯 提交于 2019-11-27 06:44:56
问题 Currently we are using Inno Setup as a bootstrapper to install the MSI prerequisites. It makes bit complex to maintain the setup. I found the Burn tool which may help us to resolve this issue by having a single setup to install whatever we need. I could not find either documentation or sample for this tool. Is anyone have idea about this? Or is there an alternative solutio? I am looking for the alternative solution for the actions that we do with the ISS bootstrapper now: Extract the files

WiX - Install Prerequisites and 3rd party applications

纵饮孤独 提交于 2019-11-27 03:59:39
I have a wix Windows Installer for my C# application. Things are working, I am able to install and uninstall the application. But I have few Prerequisites and other 3rd party applications that I want to install with my application. Prerequisites: Microsoft .NET Framework 4 (x86 and x64) - dotNetFx40_Full_x86_x64.exe SQL Server 2008 Express SQLEXPR_x64_ENU.EXE SQLEXPR32_x86_ENU.EXE SQL Server Compact 3.5 SP2 SSCERuntime-ENU.msi SSCERuntime-ENU-x64.msi 3rd Party Application: TeamViewer - TeamViewer_Setup.exe So of-course I am not looking for complete guidelines for all the Prerequisites and 3rd

Wix and .NET Framework (prerequisites)

不想你离开。 提交于 2019-11-27 00:39:06
How can I have my Wix package to download the required .NET Framework when it's not yet installed in the client's machine? I already have the condition to check for the installed .NET version but I'm not sure how to have it downloaded and installed when not found. ClickOnce does this automatically by checking the pre-requisites in the properties pages. I just need to have it done in Wix due to some other requirements. Thanks! Dirk Vollmar UPDATE Aug 2017: This very nice answer now appears outdated. Please also read the other answers in the "thread" for a few different "bootstrapper options".

How to include prerequisites with msi/Setup.exe in WIX

与世无争的帅哥 提交于 2019-11-26 14:17:52
问题 I'm trying to combine my package in a single setup EXE file and upload it to the Internet. I have created a Microsoft bootstrapper that contains Setup.exe with project MSI output, and pre-requisite .NET Framework 2.0, Windows Installer 3.1 , Visual C++ 2005 redistributables, and Microsoft ReportViewer. I have created a setup project using Visual Studio 2008. Now I'm trying to create a single compressed setup using WiX 3.6. I have installed it in Visual Studio 2008. I have attached the setup

WiX - Install Prerequisites and 3rd party applications

三世轮回 提交于 2019-11-26 10:59:09
问题 I have a wix Windows Installer for my C# application. Things are working, I am able to install and uninstall the application. But I have few Prerequisites and other 3rd party applications that I want to install with my application. Prerequisites: Microsoft .NET Framework 4 (x86 and x64) - dotNetFx40_Full_x86_x64.exe SQL Server 2008 Express SQLEXPR_x64_ENU.EXE SQLEXPR32_x86_ENU.EXE SQL Server Compact 3.5 SP2 SSCERuntime-ENU.msi SSCERuntime-ENU-x64.msi 3rd Party Application: TeamViewer -