VS2012編譯出來的程序,在XP上運行,出現“.exe 不是有效的 win32 應用程序” “not a valid win32 application”

升級vs2010到vs2012,突然發現build出來的應用程序無法運行,提示“不是有效的 win32 應用程序” or “not a valid win32 application”。

參考CSDN論壇中的方法,找到下面這篇文章:

http://blogs.msdn.com/b/vsnetsetup/archive/2012/10/16/setup-exe-is-not-a-valid-win32-application.aspx

You would receive the below error message while running a ClickOnce bootstrapper created using Visual Studio 2012 on Windows XP systems.

 

 

Clickonce bootstrapper engine (setup.exe) that was shipped with Visual Studio 2012 is NOT compatible with any OS below Windows Vista.  So, the above error message is expected and by design. The reason for this behavior is because the bootstrapper is compiled using the VC compiler and the Dev11 VC compiler does not support Windows XP.  

 

So the workaround is to install all the prerequisites manually and launch the ClickOnce application directly from deployment manifest file (.application). Another workaround would be to create a sample ClickOnce application using Visual Studio 2010 OR Visual Studio 2008 with the same name as mentioned in Visual Studio 2012 and publish it. From the published location take the setup.exe bootstrapper and replace the existing setup.exe bootstrapper created using Visual Studio 2012

 

Microsoft VC development team has done work to make VC compilers work on Windows XP in Visual Studio 2012 Update 1 CTP 3 http://www.microsoft.com/en-us/download/details.aspx?id=34818 This Visual Studio 2012 Update 1 CTP 3 patch provides an opportunity to users in building VS2012 C++ project for Win XP OS. For the users who want to develop their applications using Dev11 VC compiler (v110) for Windows XP OS, would need to install Visual Studio 2012 Update 1 CTP 3 patch.

 


文章提示,dev11 VC complier 已經不在支持XP,如果想要支持XP系統,需要更新至 VS2012 Update1,同時,在

Properties -> Configuration Properties -> General -> PlatForm ToolSet 

選擇 

Visual Studio 2012 - windows XP (v110_xp)

這樣compiler生成的exe文件方可在XP系統上運行。

VS2012 update1 下載參考

http://www.microsoft.com/visualstudio/eng/downloads#d-visual-studio-2012-update

發佈了67 篇原創文章 · 獲贊 12 · 訪問量 57萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章