redistributable

Register for SQL Server Express redistribution [closed]

十年热恋 提交于 2020-01-11 09:32:34
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We would like to redistribute SQL Server Express with our application, and according to the following links: MSDN forum, SO discussion it is necessary to register at Microsoft before. Unfortunately the link to the mentioned registration form is broken and I cannot find a registration form on the MS websites. Has

How to install redistributable with visual studio setup?

走远了吗. 提交于 2019-12-30 22:53:27
问题 I wish to make my installer (visual studio setup) to install redistributable (Visual C++ 2013 redistributable x86) in case it isn't installed on the PC or install the necessary dll for my program. I don't wish to set a launch condition. If possible, I wish that the installation of the redistributable to be silent. Any suggestion ? 回答1: That's what the Prerequisites button is for in the setup project's Properties. You'll need to set a configuration (such as Release) before you see that button.

Packaging a .NET Application So It Will Run On A Computer Without .NET

丶灬走出姿态 提交于 2019-12-29 06:17:30
问题 I have been recently trying to deploy a C# application on a computer that does not have .NET installed. I know that there have been many questions around the same topic here on StackOverflow. Here are a few of them, of which I read the responses to all: Packaging up the .net framework with a .net application deployment Run a .net application without installing .net client profile? Run C# windows application in windows XP without installing .NET Framework So all of the responses to the above

How to detect if Visual C++ 2017 Redistributable is installed

孤街浪徒 提交于 2019-12-28 15:11:44
问题 With Microsoft changing the pattern of registry entries in its latest versions, how do i detect if Visual C++ 2017 Redistributable is installed on a machine? My aim is to install VC++2015Redist since the software is written using VS2015. If i can successfully detect VC++2017Redist on a machine, then I skip my installation of VC++2015Redist 回答1: The 2017 VC++ Redistributable installation upgrades/REPLACES the 2015 installation Installation of the Visual Studio 2017 Redistributables upgrades

How to install VS2013 redistributable along with your app

谁说胖子不能爱 提交于 2019-12-25 06:06:13
问题 I build app using VS2013 but it needs VC redistributable installed on target machine to open app. How can I install these along side my app? 回答1: For Win32 desktop applications built with Visual Studio 2013, you can choose one of three options as covered on MSDN: Have your installer invoke the VCRedist_x86.exe for 32-bit apps, VCRedist_x64.exe for 64-bit native apps, or both if needed. If you use an MSI-based installer, use the MSM merge modules provided with Visual Studio 2013 You can just

MSI for Visual C++ 2015

偶尔善良 提交于 2019-12-24 01:44:27
问题 I need to install redistributable Visual C++ 2015 on three hundred computers in a corporate office. Is there any way to convert EXE to MSI. It would save tons of time. 回答1: The Visual Studio 2015 and 2017 installers are built with the WiX toolset. You can extract the contents of these with the dark tool: +>dir /b vc_* vc_redist.x64.exe vc_redist.x86.exe +>mkdir x64-extracted +>c:\local\WiX-3.11.1-bin\dark.exe vc_redist.x64.exe -x x64-extracted Windows Installer XML Toolset Decompiler version

Can Visual C++ 2017 Redistributable package support the applications that use VC2015?

老子叫甜甜 提交于 2019-12-22 07:04:32
问题 If i install just Visual C++ 2017 Redistributable on my machine, can it support applications that was written for 2015 in other words, if I uninstall Visual C++ 2015 Redistributable and install Visual C++ 2017 Redistributable , will all the applications work without any errors? 回答1: No they won't work The redistributable package is a .exe, which installs the required DLLs msvcrtXXXX.dll Where XXXX changes per build (VS2017, VS2015,...) It is also not reference counted, which means no matter

Which VC++ redistributable package to choose (x86 or x64)?

梦想的初衷 提交于 2019-12-22 04:17:09
问题 Is the package type (x86 or x64) dependent on my application type or on the OS type it is installed on? I.e., if I develop a 32-bit application do I need to deploy the x86 package only or deploy both packages and install x86 on 32-bit windows and x64 on 64-bit windows? The answer to this question 32-bit VC++ redistributable on 64 bit OS? suggests that it's only the x86 package, so it would be dependent on my application but it doesn't give any explanation/links. The MS download sites are also

Distributing .NET 4.0 redistributable with application

时光总嘲笑我的痴心妄想 提交于 2019-12-22 04:09:32
问题 I want to pack the .NET 4.0 redistributable with our application. We will be installing onto systems that may not have external network or Internet access. I went to the Microsoft site to download this and the redistributable package is listed as 48MB in size. I always thought it was close to 1GB in size. I am looking at the wrong thing? Here is the link I used. http://www.microsoft.com/download/en/details.aspx?id=17718 I need something that I can install on any qualifying Windows platform

Standalone VS 2010 C++ Program

狂风中的少年 提交于 2019-12-20 05:05:29
问题 it's been a long while since I've used VS 2010 and C++, and as I'm getting back to using it, I'm running into the same problems that plagued me last year: the exe's that I compile do not run well on older machines that do not have the correct C++ runtimes. I do not even know what link to give them, and I told them to install this after they had an error that said "The program can't start because MSVCR100.dll is missing from your computer. Try Reinstalling the program to fix this problem.