2016-04-30 96 views
-1

我下载了Visual Studio 2010的生产力电动工具。 我对缺乏Visual C++ 2010的自动补全功能感到恼火,所以我听说这应该解决它。不幸的是,它说这是我尝试安装package微软生产力电动工具无法在Visual C++ 2010上工作

Error

下面是安装日志:

4/30/2016 12:02:22 PM - Microsoft VSIX Installer 
4/30/2016 12:02:22 PM - ------------------------------------------- 
4/30/2016 12:02:22 PM - Initializing Install... 
4/30/2016 12:02:22 PM - Extension Details... 
4/30/2016 12:02:22 PM -  Identifier   : VSProPack.Microsoft.f4ef2e6e-e531-48d5-940d-eb955306da9a 
4/30/2016 12:02:22 PM -  Name    : Productivity Power Tools 
4/30/2016 12:02:22 PM -  Author    : Microsoft 
4/30/2016 12:02:22 PM -  Version   : 10.0.20626.18 
4/30/2016 12:02:22 PM -  Description  : A set of extensions to Visual Studio Professional (and above) which improves developer productivity. 
4/30/2016 12:02:22 PM -  Locale    : en-US 
4/30/2016 12:02:22 PM -  MoreInfoURL  : http://go.microsoft.com/fwlink/?LinkId=189202 
4/30/2016 12:02:22 PM -  InstalledByMSI  : False 
4/30/2016 12:02:22 PM -  SupportedFrameworkVersionRange : [4.0] 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM -  SignatureState  : InvalidCertificate 
4/30/2016 12:02:22 PM -  SignedBy   : Microsoft Corporation 
4/30/2016 12:02:22 PM -  Certificate Info : 
4/30/2016 12:02:22 PM -   ------------------------------------------------------- 
4/30/2016 12:02:22 PM -   [Subject]  : CN=Microsoft Corporation, OU=AOC, OU=OPC, O=Microsoft Corporation, L=Redmond, S=Washington, C=US 
4/30/2016 12:02:22 PM -   [Issuer]  : CN=Microsoft Code Signing PCA, O=Microsoft Corporation, L=Redmond, S=Washington, C=US 
4/30/2016 12:02:22 PM -   [Serial Number] : 6105272900010000004F 
4/30/2016 12:02:22 PM -   [Not Before] : 2/7/2011 4:12:18 PM 
4/30/2016 12:02:22 PM -   [Not After]  : 5/7/2012 5:12:18 PM 
4/30/2016 12:02:22 PM -   [Thumbprint] : 445956A6B300E18DB325510DEFA4250A07F16C9E 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM -  Supported Products : 
4/30/2016 12:02:22 PM -   Microsoft.VisualStudio.Ultimate 
4/30/2016 12:02:22 PM -    Version : [10.0] 
4/30/2016 12:02:22 PM -   Microsoft.VisualStudio.Premium 
4/30/2016 12:02:22 PM -    Version : [10.0] 
4/30/2016 12:02:22 PM -   Microsoft.VisualStudio.Pro 
4/30/2016 12:02:22 PM -    Version : [10.0] 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM -  References   : 
4/30/2016 12:02:22 PM -   ------------------------------------------------------- 
4/30/2016 12:02:22 PM -   Identifier : Microsoft.VisualStudio.MPF 
4/30/2016 12:02:22 PM -   Name   : Visual Studio MPF 
4/30/2016 12:02:22 PM -   Version  : [10.0,) 
4/30/2016 12:02:22 PM -   MoreInfoURL : 
4/30/2016 12:02:22 PM -   Nested  : No 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM - Signature Details... 
4/30/2016 12:02:22 PM -  Extension is signed with an invalid certificate 
4/30/2016 12:02:22 PM -   (NotTimeValid)  : A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM - 
4/30/2016 12:02:22 PM - Searching for applicable products... 
4/30/2016 12:02:22 PM - Found installed product - Microsoft Visual C++ Express 2010 
4/30/2016 12:02:22 PM - Found installed product - Microsoft Visual Studio Express 2012 for Windows Phone 
4/30/2016 12:02:22 PM - Found installed product - Microsoft Visual Studio Community 2015 
4/30/2016 12:02:22 PM - Found installed product - Microsoft Visual Studio 2015 Shell (Integrated) 
4/30/2016 12:02:22 PM - Found installed product - Global Location 
4/30/2016 12:02:22 PM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products. 
    at VSIXInstaller.App.InitializeInstall(Boolean isRepairSupported) 
    at VSIXInstaller.App.InitializeInstall() 
    at System.Threading.Tasks.Task.InnerInvoke() 
    at System.Threading.Tasks.Task.Execute() 
+0

日志清楚地列出了支持的产品,并列出了它在系统上安装的产品。 *你的系统中没有安装任何支持的产品中的哪一部分*尚不清楚?你应该学会实际上**在错误消息和日志中读**,因为它们几乎总是具有与问题有关的实际意义。在这种情况下,它不会更清晰(除非MS有人打电话给你解释)。 –

回答

1

的Visual C++不支持2010,你可以从日志文件中看到:

Supported Products : 
    Microsoft.VisualStudio.Ultimate 
     Version : [10.0] 
    Microsoft.VisualStudio.Premium 
     Version: [10.0] 
    Microsoft.VisualStudio.Pro 
     Version: [10.0] 

VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products. 

只支持Visual Studio 2010版本,不支持任何Express版本。

+1

升级时间。 VS2010是古老的。 –

相关问题