本文介绍了致命错误VS 2013的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在Windows 10 64位家庭周年纪念版上安装Visual Studio Express 2013(更新4),但是在安装时却出现致命错误.我有完整的日志,但是在这里发布太久了,所以我有部分内容开始了 错误.

I am installing Visual Studio Express 2013 (Update 4) on my Windows 10 64-bit Home Anniversary Edition, but I keep getting a fatal error when I'm installing it. I have my full log, but it's too long to post here, so I have the part where it started giving errors.

推荐答案

感谢您在MSDN论坛中发帖.

Thank you for posting in MSDN forum.

首先,让我们看下面的主要错误信息"

Firstly, Let's see the main error information as below"

[1C40:051C] [2016-10-28T07:31:57] i000: MUX:  ExecuteError:程序包(wdexpress_coremsi)失败:错误消息ID:1326错误消息:错误1326.Error获取文件安全性:C:\ GetLastError:5
[1C40:051C] [2016-10-28T07:32:00] i000:MUX:  ExecuteError:程序包(wdexpress_coremsi)失败:错误消息ID:1712错误消息:错误1712.无法将计算机还原到以前的状态所需的一个或多个文件 被发现.  将无法恢复.
[0568:1DA0] [2016-10-28T07:32:02] e000:错误0x80070643:安装MSI软件包失败.
[0568:1DA0] [2016-10-28T07:32:02] e000:错误0x80070643:执行MSI软件包失败.
[1C40:051C] [2016-10-28T07:32:02] e000:错误0x80070643:无法配置每台计算机的MSI软件包

[1C40:051C][2016-10-28T07:31:57]i000: MUX:  ExecuteError: Package (wdexpress_coremsi) failed: Error Message Id: 1326 ErrorMessage: Error 1326.Error getting file security: C:\ GetLastError: 5
[1C40:051C][2016-10-28T07:32:00]i000: MUX:  ExecuteError: Package (wdexpress_coremsi) failed: Error Message Id: 1712 ErrorMessage: Error 1712.One or more of the files required to restore your computer to its previous state could not be found.  Restoration will not be possible.
[0568:1DA0][2016-10-28T07:32:02]e000: Error 0x80070643: Failed to install MSI package.
[0568:1DA0][2016-10-28T07:32:02]e000: Error 0x80070643: Failed to execute MSI package.
[1C40:051C][2016-10-28T07:32:02]e000: Error 0x80070643: Failed to configure per-machine MSI package

这些消息表明您遇到文件安全性问题,某些软件包无法执行.请在此处查看类似情况:

These message inform that your have file security problem, that some packages failed to execute.Please take a look at a similar case here:

http://stackoverflow.com/questions/27597632/visual -studio-community-2013-update-4-setup-failed

这是解决方法:

1.确保您的Visual Studio安装程序未损坏,

1. Make sure that your Visual Studio installer is not corrupted,

使用FCIV.exe http://support.microsoft.com/kb/841290  验证ISO的哈希值.

use FCIV.exe http://support.microsoft.com/kb/841290  to verify hash of the ISO.

2.授予当前用户对 C:\ Program Files(x86)\ Microsoft Visual Studio 12.0 的完全控制权.

2. Give the current user full control over C:\Program Files (x86)\Microsoft Visual Studio 12.0.

3.在环境变量"中找到ComSpec系统变量的值为:%SystemRoot%\ system32 \ cmd.exe; C:\ wamp \ bin \ php \ php5.5.12;.

3. Find the ComSpec System Variable in Environment Variables value is : %SystemRoot%\system32\cmd.exe;C:\wamp\bin\php\php5.5.12;.

将值更改为%SystemRoot%\ system32 \ cmd.exe;

Changing the value to %SystemRoot%\system32\cmd.exe;

如果错误仍然存​​在,请随时告诉我.

If the error still persists, please feel free to let me know.

最好的问候


这篇关于致命错误VS 2013的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 17:53