.Net Frameworks Initialization Error
I have develop application on VS-2005 and installed it at another machine and along with application I have installed .net frameworks 2.0 version as per demand and it works well at time of installed and after some time if I try to open it it’s throw error like “ .Net Framework Initialization Error, Unable to find a version of the开发者_运维问答 runtime to run this application."
Client Machine : Operating System is XP sp2
How to overcome from it?.
This error means your program cannot find or load mscorwks.dll. Here are a few debugging steps:
- Make sure you have the correct version of the framework installed. Try repairing it in Add/Remove Programs.
- Check to see if your antivirus is causing issues. Try turning it off temporarily to see if that fixes the problem.
- If you have access to the source project, try creating a new application installer program in Visual Studio, uninstall the old application, and install the new application (which is the same application, just with a new installer).
The Above Problem Solved. There was virus infected PC so I have removed it first and Installed the fresh application again and now it is working very well.
精彩评论