Questions tagged [redistributable]

212 questions
8
votes
1 answer

Microsoft Visual C++ Redistributable for Visual Studio 2012 Update 4 Installer displaying in Chinese

I need to install Microsoft Visual C++ Redistributable for Visual Studio 2012 Update 4 but when I run it, it opens in Chinese even though I selected English. I have tried in three different browsers. When I right click the downloaded file from…
8
votes
3 answers

Specifying a VC++ Redistributable version for ClickOnce prerequisite

My ClickOnce application uses a third party tool that requires the Visual C++ 2005 redistributable. The third party tool will not work if only the VC++ 2008 redistributable is installed. However, in Visual Studio 2008, the ClickOnce prerequisites do…
Tarsier
  • 2,329
  • 24
  • 17
8
votes
3 answers

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

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…
Xyene
  • 2,304
  • 20
  • 36
7
votes
1 answer

Can i include the "vcredist_x86.exe" in my setup

I have an application developed using c++\cli on vs2008. As you are aware to deploy this application on any machine, i need the vc++ redistributable to be installed on the target machine. I wanted to know if i could include the vcredist_x86.exe in…
7
votes
2 answers

How to check if I need to install VCRedist?

My program contains several dlls which depend on MSVCP100.dll and MSVCR100.dll, in Win7 my program runs without any problem, however in Win8 it failed to locate these two dlls. I notice that in Win8 there is no VCRedist installed by default, so…
Deqing
  • 14,098
  • 15
  • 84
  • 131
6
votes
2 answers

redistributing and using the CS.exe compiler (C#) for my application

We are currently building an application which needs to compile C# code. Can we redistribute csc.exe in our package. I thought that it comes with the .Net framework installation but from looking in Microsoft Web site I see that there is a difference…
Adi Barda
6
votes
5 answers

Programming for Windows with no redistributable

It might be a stupid question, but all of my tries to google this failed. The question is: How can you develop windows applications that don't need a redistributable pre-installed? I want to create applications that run also under older versions of…
eflorico
  • 3,589
  • 2
  • 30
  • 41
5
votes
2 answers

C++ executable - MSVCR100.dll not found error

I've downloaded and compiled an open-source C++ application, Frhed. When I run the version I've compiled, it demands MSVCR100 and few other dll files (part of Visual C++ redistributable). However, when I run the original precompiled Frhed…
SharpAffair
  • 5,558
  • 13
  • 78
  • 158
5
votes
1 answer

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

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…
5
votes
4 answers

MSI for Visual C++ 2015

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.
sergman
  • 171
  • 1
  • 2
  • 12
5
votes
5 answers

32-bit VC++ redistributable on 64 bit OS?

Using Visual Studio, I have built an C++ application running in 32bit. It will be deployed both to 32-bit and 64-bit Windows servers. It won't be run in 64-bit mode (but rather under WoW). Should I include both the 32-bit and 64-bit Visual C++…
martinnitram
  • 53
  • 1
  • 1
  • 3
5
votes
2 answers

How to install redistributable with visual studio setup?

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,…
Erebos
  • 93
  • 2
  • 10
5
votes
1 answer

Can we install VC++ 2015 Redistributable Package in custom location, where as non-administrator has rights to access?

We have VC++ projects in VS 2008 and Wpf Projects in 2010. We want to migrate both of them to Visual Studio 2015. The biggest problem we face, while a new user needed to install our software is, he need to install the pre-requisite of installing…
5
votes
1 answer

Command for Elastic Beanstalk configuration to install Visual C++ Redistributable

I am searching for a command that I can use in Elastic Beanstalk configuration file to install Visual C++ Redistributable for Visual Studio 2012 which I need for my web project to run. I tried installing using msi which I built from the exe and put…
5
votes
2 answers

Detecting the MSC_VER of a lib

I have a code base that I am compiling in to a library. Normally I would send the library as MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010) but my customer is asking for it as MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012). I have…
1
2
3
14 15