How to run windows application on client machine having service pack -1 - visual-studio

I had developed a window application in visual studio 2012 using .net frame work 4.5
now i want to run that application on client machine having windows xp sp1
so i m stuck how to proceed ahead
what is requirement of client machine.
any help will be appreciated.

.NET 4.5 does not support XP.
http://msdn.microsoft.com/en-us/library/8z6watww%28v=vs.110%29.aspx
You'll need to rebuild with a lower .NET version.

Related

Can a C# application developed on Visual Studio 2010 run on Windows 10?

My application is developed in C# on VS 2010 and Windows 7. I want to migrate the application on Windows 10 system.
Are there any patch fix available for the same? As I understand VS 2010 does not have support for Windows 10.
https://www.microsoft.com/en-us/download/details.aspx?id=42541
above is the link for service 1 for windows10 try installing hope this solves your problem

Developing in Visual Studio 2005 for Windows Server 2012

Is it possible to install an ASP.net website developed with Visual Studio 2005 in a server with Windows Server 2012? Our client is planning to upgrade the server from Windows Server 2003 to Windows Server 2012. Will the application (already developed with VS 2005) run in a 64 bits operating system?
It is possible. Two things to make sure you do is to have the correct .Net version installed on the windows server and when you setup the new site in IIS (assuming IIS) that the application pool is set to allow 32-bit applications.
This will take you through how to enable 32-bit app pools (it is for IIS7 but IIS 8 is the same)
https://help.webcontrolcenter.com/kb/a1114/how-to-enable-32-bit-application-pool-iis-7-dedicatedvps.aspx
Visual Studio is just a development environment and is intendant of the target server type/version. You can use Visual Studio to develop any .Net application/website no matter where you want to run it. It is all about the server being configured to run a 32-bit .Net application.

Deploying to Windows Server 2003

Using visual studio 2013 on a windows 8 machine I created a F# console application. The app runs fine on the dev machine. But when I build a debug release and export it to a windows 2003 server and attempt to run, I continually get the error: not a valid win32 application even though the build configuration is set to "any cpu". Does anyone know how to solve this error? Thanks.
You are probably using .NET Framework 4.5 wich is not compatible with Windows Server 2003.
If you are not using anything from .NET 4.5 you can change on Visual Studio the framework targeted by the application to 4 and then run it on Windows Server 2003.
Also, here is the list of requirements for .NET Framework 4.5
https://msdn.microsoft.com/en-us/library/8z6watww%28v=vs.110%29.aspx

I can't install .net framework 4 on my desktop which has Windows XP service pack 2 O.S

I made a small simple c# application in Visual studio 2010 ultimate and i deployed it and it requires .Net framework 4 to run but when I tried to run this app in a desktop of Windows XP Service Pack 2 it is showing me an error that it requires "Windows Imaging Component" and it is providing me a link to download it - http://go.microsoft.com/fwlink/?linkid=162643&clcid=0x409
but when i download WIC from this site and tried to run on that desktop it is showing me an error that ??????????????????????Windows XP???????????? nw what should i do to run my app in that desktop plz suggest me some thing.
Why SP2 for XP? Are you running XP x64? If you aren't using x64 make sure you have windows installer 3.1 and it should install with no issues. As a side note however, .net 4.0 is NOT supported on XP SP2.
This link can help.
Windows XP SP 2 is very old and you may need to upgrade to SP3

How can I program an application on the for the .net framework 1.0?

I have a Windows 7 machine and I see that Microsoft does not recommend Visual Studio 2003 on the computer (Windows 7). How can I develop an application for the .net framework 1.0 then? I currently have visual basic express 2010.
EDIT: 1.0 runs on older machines that require administrator to update.
VS 2010 will only let you target back to 2.0 Framework. You can either put XP on your development machine, or use a virtual machine with XP to put VS 2003 on it.
There seems to be a way to do it. It does not seem to be supported but you can give this a try.
Installing 1.X Framework on Win7

Resources