月別アーカイブ: 11月 2014

InstallShiled Limited Edtion で Windows サービス のインストーラーを作成


InstallShiled Limited Edtion で Windows サービス のインストーラーを作成する手順です。

  1. InstallShiled Limited Edtion Project を追加します。ソリューションエクスプローラで Project Assistant の Application Files を選択します。Add Project Outputs をクリックして プライマリ出力をチェックします。
  2. 2.Specify Application Data の Files を選択して Destrination computer’s files の (ProjectName).プライマリ出力 を右クリックします。Properties を選択して COM & .NET Settings タブの Installer Class をチェックします。

次のいずれかの作業を行います。


3.Configure The Target System の Services を選択します。Services を右クリックして Add Service を選択します。ProgramFilesFolder – (ProjectFolder) – My Project Name – (ProjectName).プライマリ出力 を選択します。各項目を設定ます。Local System アカウントの場合は User Name を空欄のままにします。


Windows Service プロジェクトに インストーラークラス を追加します。次のようなコードを InitializeComponent(); の下に追加します。


            ServiceInstaller si = new ServiceInstaller();
            ServiceProcessInstaller sp = new ServiceProcessInstaller();
            sp.Account = ServiceAccount.LocalSystem;
            this.Installers.Add(sp);

            si.StartType = ServiceStartMode.Automatic;
            si.ServiceName = "";
            si.DisplayName = "";
            si.Description = "";
            // si.DelayedAutoStart = true;

app.config


app.config を編集すると、

要素 ‘supportedRuntime’ のスキーマ情報が見つかりませんでした。
Could not find schema information for the element ‘supportedRuntime’. が表示されます。

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Xml\Schemas\ フォルダーの DotNetConfig40.xsd ,DotNetConfig45.xsd の記述から 対象のフレームワークを .NET Framework 4.5 より古いバージョンに設定した場合に発生します。supportedRuntime 要素を削除します。


プライマリ参照


C++/CLI クラスライブラリー を追加すると、「プライマリ参照 “ClassLibrary1.dll” は、現在のターゲット フレームワークのバージョン “2.0.0.0” より高いバージョン “4.0.0.0” を持つ .NET Framework アセンブリ “mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089” に間接的に依存するため、解決できませんでした。」MSB3258 が表示される

Manifest の


// Metadata version: v4.0.30319
.module extern KERNEL32.dll
.assembly extern mscorlib
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (4C 6D D5 F0 B3 39 1D 2E 9B BF AE 45 93 CB 36 97   // Lm...9.....E..6.
           CF 28 E3 09 )                                     // .(..
  .ver 2:0:0:0
}
.assembly extern System.Data
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (E5 B5 50 54 98 E9 5C 10 DE FA 9F 8C DA 20 92 64   // ..PT..\...... .d
           22 BB 14 2A )                                     // "..*
  .ver 2:0:0:0
}
.assembly extern System
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (8F 67 30 D2 14 4F D0 12 CF A9 CD CF 9C 9D FA 6B   // .g0..O.........k
           BD 6B 4E CD )                                     // .kN.
  .ver 2:0:0:0
}
.assembly extern System.Drawing
{
  .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )                         // .?_....:
  .hash = (61 8E BC 29 EC 27 A8 A2 E6 5E 22 DC F1 34 50 67   // a..).'...^"..4Pg
           EB B5 52 2E )                                     // ..R.
  .ver 2:0:0:0
}
.assembly extern System.Windows.Forms
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (C8 E3 55 99 8D A6 05 94 2E 9C 39 03 E4 57 C9 95   // ..U.......9..W..
           D3 78 C6 FA )                                     // .x..
  .ver 2:0:0:0
}
.assembly extern System.Xml
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (F2 5E C5 12 29 C2 D9 EA D0 45 F7 4B 64 05 5B B2   // .^..)....E.Kd.[.
           2C 4D 43 F8 )                                     // ,MC.
  .ver 2:0:0:0
}
.assembly extern mscorlib as mscorlib_6
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (85 30 75 CB A9 F2 05 CC 3F 90 83 F8 EF AC 38 80   // .0u.....?.....8.
           C8 C6 C5 39 )                                     // ...9
  .ver 4:0:0:0
}
.assembly extern System as System_7
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .hash = (36 0F BF A1 60 15 52 0B 36 66 A7 2E DB FA 4C 19   // 6...`.R.6f....L.
           00 F5 85 5D )                                     // ...]
  .ver 4:0:0:0
}

4:0:0:0 と 2:0:0:0 が混在している箇所に問題がありそうです。共通言語ランタイム サポートを /clr から /clr:safe に変更したところこの問題は解決しました。

Visual Studio 2010, Visual Studio 2012, Visual Studio 2013, Visual Studio 2015など.NET Framework 4 以降のバージョンに対応しているプラットフォーム ツールセットでは .NET Framework 2/3.5など古いバージョンに対応していないため、Visual Studio 2005, Visual Studio 2008 または Windows SDK のインストールが必要です。これは仕様のようです。

こちらのブログに詳しい情報があります。

Visual Studio のデザイナー


タイトルを Visual Studio Community 2013 のデザイナー から Visual Studio のデザイナー に変更しました[2015-05-01]

C# Windows フォーム アプリケーションと C++ クラスライブラリを プロジェクトに追加します。C++/CLI コンポーネントを追加して デザイナーの表示 を選択すると

  • デザイナーのエラー 「データが失われる可能性を防ぐため、デザイナーの読み込み前に以下のエラーを解決する必要があります。」
  • このファイルのデザイナーに、デザインできるクラスがないため、デザイナーを表示できませんでした。
    場所 System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.EnsureDocument(IDesignerSerializationManager manager)
    場所 System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager)
    場所 Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager)
    場所 Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.DeferredLoadHandler.Microsoft.VisualStudio.TextManager.Interop.IVsTextBufferDataEvents.OnLoadCompleted(Int32 fReload)
  • C++ CodeDOM parser error: Line: 60, Column: 23 — Unknown type ”. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built.

Visual Studio 2015 RC では次のメッセージが表示されることがあります。

  • この操作を完了するために必要なデータは、まだ利用できません。 (HRESULT からの例外:0x8000000A)

Windows Software Development Kit(SDK) を修復します。また「SDK バージョンの再ターゲット」を選択して修正すると発生しなくなります。

Visual Studio Community 2013


ngen update を実行したところ、次のメッセージが表示されます。

Failed to load dependency Microsoft.VisualStudio.QualityTools.NicServices of assembly Microsoft.VisualStudio.QualityTools.AgentObject, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.VisualStudio.TeamSystem.Licensing of assembly Microsoft.VisualStudio.QualityTools.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.VisualStudio.Enterprise.AspNetHelper of assembly Microsoft.VisualStudio.QualityTools.ExecutionCommon, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.ControllerObject of assembly Microsoft.VisualStudio.QualityTools.TMI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency System of assembly Microsoft.VisualStudio.QualityTools.TMI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : このアセンブリは現在読み込まれているランタイムより新しいランタイムでビルドされているため、読み込むことができません。 (HRESULT からの例外: 0x8013101B)
Failed to load dependency Microsoft.VisualStudio.Enterprise.AspNetHelper of assembly Microsoft.VisualStudio.QualityTools.TMI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.Office.Interop.Excel of assembly Microsoft.VisualStudio.Tools.Office.Excel.AddInProxy.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency office of assembly Microsoft.VisualStudio.Tools.Office.HostAdapter.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.Office.Interop.Word of assembly Microsoft.VisualStudio.Tools.Office.Word.AddInProxy.v9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外: 0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Controls.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Controls of assembly Microsoft.Expression.Controls.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Controls.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Drawing of assembly Microsoft.Expression.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Effects.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Effects of assembly Microsoft.Expression.Effects.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Effects.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Prototyping.SketchControls of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Prototyping.Interactivity of assembly Microsoft.Expression.Prototyping.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Controls.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Controls of assembly Microsoft.Expression.Controls.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Controls.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Drawing.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Drawing of assembly Microsoft.Expression.Drawing.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Drawing.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Effects.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Effects of assembly Microsoft.Expression.Effects.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Effects.Design, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Prototyping.SketchControls of assembly Microsoft.Expression.Prototyping.SketchControls.Design.v4, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Prototyping.Interactivity of assembly Microsoft.Expression.Prototyping.Runtime, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Controls.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Controls of assembly Microsoft.Expression.Controls.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Controls.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Drawing.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Drawing of assembly Microsoft.Expression.Drawing.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Drawing.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Drawing.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Effects.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Effects of assembly Microsoft.Expression.Effects.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Effects.Design, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Controls, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Drawing, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Effects, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Interactions, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows.Browser of assembly Microsoft.Expression.Interactions, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Prototyping.Interactivity, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows.Controls.Navigation of assembly Microsoft.Expression.Prototyping.Interactivity, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Xml of assembly Microsoft.Expression.Prototyping.Interactivity, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Xml.Serialization of assembly Microsoft.Expression.Prototyping.Interactivity, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Prototyping.SketchControls, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly System.Windows.Interactivity, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.ServiceModel of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Prototyping.Interactivity of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows.Controls of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Xml.Linq of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Net of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows.Browser of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Runtime.Serialization of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Xml of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Xml.Serialization of assembly Microsoft.Expression.Prototyping.Runtime, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Controls.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Controls of assembly Microsoft.Expression.Controls.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Controls.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Interaction of assembly Microsoft.Expression.Drawing.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.Drawing of assembly Microsoft.Expression.Drawing.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Windows.Design.Extensibility of assembly Microsoft.Expression.Drawing.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Drawing.Design, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Controls, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Drawing, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.Interactions, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly System.Windows.Interactivity, Version=3.9.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.ServiceBus of assembly Microsoft.VisualStudio.Services.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.SilverlightPlatform, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Word of assembly Microsoft.Expression.SketchFlow, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.TeamFoundation.VersionControl.ControlAdapter of assembly Microsoft.Expression.SourceControl.TFS, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency System.Windows of assembly Microsoft.Expression.WindowsPhonePlatform, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Phone of assembly Microsoft.Expression.WindowsPhonePlatform, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.GraphProviderPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Repository of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Progression.CodeSchema, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CppSvc.Internal of assembly Microsoft.VisualStudio.Progression.Native.CodeProvider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeStore.Internal of assembly Microsoft.VisualStudio.Progression.Native.CodeProvider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Repository of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Progression.CodeSchema, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.NavigateTo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Language.NavigateTo.Implementation of assembly Microsoft.VisualStudio.CSharp.NavigateTo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeSense.Languages.Interfaces of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CallHierarchy.Package.Definitions of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.SmartTags, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeSense.Languages.Interfaces of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CallHierarchy.Package.Definitions of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Platform.VSEditor.Interop of assembly Microsoft.VisualStudio.Editor.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.ConnectedServices.Contracts of assembly Microsoft.VisualStudio.AppxPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.WizardFrameworkWpf of assembly Microsoft.VisualStudio.AppxPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.ReferenceManager.Dialog of assembly Microsoft.VisualStudio.AppxPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.ConnectedServices.Package of assembly Microsoft.VisualStudio.AppxPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.TestContracts of assembly Microsoft.VisualStudio.AppxPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency DiagnosticsHub.Packaging.Interop of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.DiagnosticsHub.Packaging.InteropEx of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.HeapDump of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.FastSerialization of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.FastSerialization of assembly Microsoft.Diagnostics.MemoryGraph, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.Utilities of assembly Microsoft.Diagnostics.MemoryGraph, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Progression.CodeSchema, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Repository of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Data.Entity.Design.Extensibility of assembly Microsoft.Data.Entity.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.DataDesign.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.DesignHost of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Data.Providers.SqlServer, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Data.Providers.SqlServer, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Web.Application, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.DataDesign.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Editors, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.DesignHost of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj2, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Data.Providers.SqlServer, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.DataDesign.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.ExpressionHost, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.ServiceBus of assembly Microsoft.VisualStudio.Services.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Data of assembly Microsoft.VisualStudio.QualityTools.Vsip, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.QualityTools.Vsip, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.NicServices of assembly Microsoft.VisualStudio.QualityTools.AgentObject, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.WizardFramework of assembly Microsoft.VisualStudio.TeamFoundation.WorkItemTracking, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.WizardFramework of assembly Microsoft.VisualStudio.TeamFoundation.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency office of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Excel of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.PowerPoint of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.MSProject of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Outlook of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.VisualStudio.Services.WebApi, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.VisualStudio.Services.WebApi, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.ServiceBus of assembly Microsoft.VisualStudio.Services.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.VisualStudio.Services.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TeamSystem.Integration of assembly Microsoft.VisualStudio.TeamSystem.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TeamSystem.Licensing of assembly Microsoft.VisualStudio.QualityTools.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency FSharp.Core of assembly FSharp.Data.TypeProviders, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.MediaCenter of assembly ehexthost32, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.MediaCenter.UI of assembly ehexthost32, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency ehiExtens of assembly ehexthost32, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly FSharp.ProjectSystem.FSharp, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency mcstore of assembly mcstoredb, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Excel of assembly MetricsPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.TeamFoundation.Discussion.WebApi, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency office of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Excel of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.PowerPoint of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.MSProject of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Outlook of assembly Microsoft.TeamFoundation.OfficeIntegration.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.TeamFoundation.TestManagement.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
1> Compiling assembly Microsoft.TeamFoundation.TestManagement.Client, Version=12.0.0.00000, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A (CLR v4.0.30319) …
Failed to load dependency Newtonsoft.Json of assembly Microsoft.TeamFoundation.TestManagement.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
2> Compiling assembly Microsoft.TeamFoundation.TestManagement.Common, Version=12.0.0.00000, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A (CLR v4.0.30319) …
2>Warning: System.IO.FileNotFoundException: ファイルまたはアセンブリ ‘Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed’、またはその依存関係の 1 つが読み込めませんでした。指定されたファイルが見つかりません。. If this assembly is found during runtime of an application, then the native image currently being generated will not be used.
2>Warning: System.IO.FileNotFoundException: ファイルまたはアセンブリ ‘Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed’、またはその依存関係の 1 つが読み込めませんでした。指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002). If this assembly is found during runtime of an application, then the native image currently being generated will not be used.
1>Warning: System.IO.FileNotFoundException: ファイルまたはアセンブリ ‘Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed’、またはその依存関係の 1 つが読み込めませんでした。指定されたファイルが見つかりません。. If this assembly is found during runtime of an application, then the native image currently being generated will not be used.
Failed to load dependency Microsoft.VisualStudio.CppSvc.Internal of assembly Microsoft.VisualC.Editor.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Platform.VSEditor.Interop of assembly Microsoft.VisualC.Editor.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualC.Editor.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Language.NavigateTo.Implementation of assembly Microsoft.VisualC.QuickSearch.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CppSvc.Internal of assembly Microsoft.VisualC.QuickSearch.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeStore.Internal of assembly Microsoft.VisualC.QuickSearch.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.NavigateTo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Language.NavigateTo.Implementation of assembly Microsoft.VisualStudio.CSharp.NavigateTo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeSense.Languages.Interfaces of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CallHierarchy.Package.Definitions of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.CSharp.Services.Language, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.CSharp.SmartTags, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Debugger.Parallel.MultiValueVisualizers of assembly Microsoft.VisualStudio.Debugger.Parallel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Excel of assembly Microsoft.VisualStudio.Debugger.Parallel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Msagl of assembly Microsoft.VisualStudio.Diagrams.Layout.Implementation, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.DataTools.Interop of assembly Microsoft.VisualStudio.Editors, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Editors, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Progression.Analyzers of assembly Microsoft.VisualStudio.GraphDocumentPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Office.Interop.Outlook of assembly Microsoft.VisualStudio.GraphDocumentPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.GraphModel of assembly Microsoft.VisualStudio.GraphProviderPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Language.NavigateTo.Implementation of assembly Microsoft.VisualStudio.Language.QuickSearch.FileNameProvider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.PerformanceTools.EditorIntegration, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfPresentation of assembly Microsoft.VisualStudio.PerformanceTools.Visualization, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfReader of assembly Microsoft.VisualStudio.PerformanceTools.Visualization, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Progression.CodeSchema, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Repository of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.11.0 of assembly Microsoft.VisualStudio.Progression.Common, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CSharp.Services.Language.Interop of assembly Microsoft.VisualStudio.Progression.LanguageService.CSharp, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CppSvc.Internal of assembly Microsoft.VisualStudio.Progression.Native.CodeProvider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeStore.Internal of assembly Microsoft.VisualStudio.Progression.Native.CodeProvider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Controller.SpooledJob of assembly Microsoft.VisualStudio.QualityTools.ControllerObject, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestTools.TestSettings.Common of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.WizardFramework of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Data of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.CodeCoverage of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestTools.TestSettings of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.CMI of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.WebTestFramework of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.LoadTest of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.WebTestFramework of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.LoadTest of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestWindow.Interfaces of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.CMI of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestPlatform.Utilities.PhoneAppContainer of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestWindow.Interfaces of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.TestPlatform.Utilities.PhoneAppContainer of assembly Microsoft.VisualStudio.QualityTools.Tips.TuipPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Data of assembly Microsoft.VisualStudio.QualityTools.Vsip, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.TeamFoundation.TestManagement.Controls of assembly Microsoft.VisualStudio.QualityTools.Vsip, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.QualityTools.Vsip, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Web.Application of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.10.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.Design of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.10.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.10.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Silverlight of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.10.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Web.Application of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.11.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Shell.Design of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.11.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.11.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Silverlight of assembly Microsoft.VisualStudio.ServiceModel.DomainServices.Tools.11.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.VisualStudio.Services.Client, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly Microsoft.VisualStudio.Services.WebApi, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CallHierarchy.Package.Definitions of assembly Microsoft.VisualStudio.VisualBasic.LanguageService, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.VisualBasic.LanguageService, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Language.NavigateTo.Implementation of assembly Microsoft.VisualStudio.VisualBasic.NavigateTo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.DataTools.Interop of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Data.Interop of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.ServerExplorer of assembly Microsoft.VisualStudio.Web, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Web.PublishContract of assembly Microsoft.VisualStudio.Web.Application, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Web.Application, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VisualStudio.Windows.Forms, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Expression.DesignHost of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.DataTools.Interop of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Data.Interop of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.DataTools of assembly Microsoft.VSDesigner, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.PerformanceTools.Automation of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.WizardFrameworkVS of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfPresentation of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.WizardFramework of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfReader of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.DiagnosticsHub.SDK of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.Enterprise.AspNetHelper of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.PerformanceTools.CounterInfo of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfControl.Interop of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.DiagnosticsHub.VisualStudio.SDK of assembly perfpkg, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency StanPackage of assembly StanCore, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.VisualStudio.CodeAnalysis.Sdk.UI of assembly StanCore, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Newtonsoft.Json of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency DiagnosticsHub.Packaging.Interop of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.DiagnosticsHub.Packaging.InteropEx of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.HeapDump of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency Microsoft.Diagnostics.FastSerialization of assembly VsDebugPresentationPackage, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfReader of assembly VSPerfAnalysis, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency VSPerfReader of assembly VSPerfData, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)
Failed to load dependency EnvDTE of assembly WindowsFormsIntegration.Design, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a because of the following error : 指定されたファイルが見つかりません。 (HRESULT からの例外:0x80070002)

assembly フォルダーにdllファイルが正しく登録されていないようです。手動で登録するにはファイルが多いです。

HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Assemblies, HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Assemblies\Global には 正しく登録されています。

KB3000850


Windows 8.1 x64 Update 1, KB3000850 (KB3014442) で 800f0826, 8007054f エラーが発生します

「更新プログラムを適用しています」において 7から9%で再起動した後、 「Windows 更新プログラムを構成できませんでした」「更新プログラムの構成に失敗しました。変更を元に戻しています。コンピューターの電源を切らないでください。更新プログラムを構成しています…」が表示されてもう一度再起動します。再びこのメッセージが表示されて 更新に失敗します。

%SystemRoot%\Logs\CBS\CBS.log に次のようなメッセージが書き込まれます。

2014-11-20 18:50:54, Info CBS Winlogon: TiCoreOnCreateSession has been called
2014-11-20 18:50:55, Info CBS Winlogon: TiCoreOnCreateSession has been called
2014-11-20 18:50:59, Info CBS INSTALL index: 49, phase: 1, result 0, inf: miradisp.inf
2014-11-20 18:50:59, Info CBS INSTALL index: 54, phase: 1, result 0, inf: mgtdyn.inf
2014-11-20 18:50:59, Info CBS INSTALL index: 55, phase: 1, result 0, inf: idtsec.inf
2014-11-20 18:50:59, Info CBS INSTALL index: 56, phase: 1, result 0, inf: hidscanner.inf
2014-11-20 18:51:00, Info CBS INSTALL index: 0, phase: 1, result 0, inf: usbxhci.inf
2014-11-20 18:51:00, Info CBS INSTALL index: 1, phase: 1, result 0, inf: usbhub3.inf
2014-11-20 18:51:02, Info CBS INSTALL index: 3, phase: 1, result 0, inf: keyboard.inf
2014-11-20 18:51:02, Info CBS INSTALL index: 4, phase: 1, result 0, inf: msmouse.inf
2014-11-20 18:51:02, Info CBS INSTALL index: 6, phase: 1, result 0, inf: vhdmp.inf
2014-11-20 18:51:03, Info CBS INSTALL index: 8, phase: 1, result 0, inf: wvmbus.inf
2014-11-20 18:51:03, Info CBS INSTALL index: 9, phase: 1, result 0, inf: wvpci.inf
2014-11-20 18:51:03, Info CBS INSTALL index: 10, phase: 1, result 0, inf: wstorflt.inf
2014-11-20 18:51:03, Info CBS INSTALL index: 11, phase: 1, result 0, inf: wnetvsc.inf
2014-11-20 18:51:04, Info CBS INSTALL index: 12, phase: 1, result 0, inf: wvms_pp.inf
2014-11-20 18:51:04, Info CBS INSTALL index: 14, phase: 1, result 0, inf: sdbus.inf
2014-11-20 18:51:05, Info CBS INSTALL index: 15, phase: 1, result 0, inf: wdma_bt.inf
2014-11-20 18:51:05, Info CBS INSTALL index: 16, phase: 1, result 0, inf: usbcir.inf
2014-11-20 18:51:05, Info CBS INSTALL index: 17, phase: 1, result 0, inf: hidbthle.inf
2014-11-20 18:51:06, Info CBS INSTALL index: 18, phase: 1, result 0, inf: bthhfenum.inf
2014-11-20 18:51:06, Info CBS INSTALL index: 19, phase: 1, result 0, inf: bth.inf
2014-11-20 18:51:07, Info CBS Progress: UI message updated. Operation type: Update. Stage: 1 out of 1. Percent progress: 8.
2014-11-20 18:51:07, Info CBS Winlogon: TiCoreOnCreateSession has been called
2014-11-20 18:51:07, Info CBS INSTALL index: 20, phase: 1, result 0, inf: ehstorpwddrv.inf
2014-11-20 18:51:07, Info CBS INSTALL index: 21, phase: 1, result 0, inf: wudfusbcciddriver.inf
2014-11-20 18:51:07, Info CBS INSTALL index: 22, phase: 1, result 0, inf: wdmaudio.inf
2014-11-20 18:51:07, Info CBS INSTALL index: 23, phase: 1, result 0, inf: usbvideo.inf
2014-11-20 18:51:07, Info CBS INSTALL index: 24, phase: 1, result 0, inf: tpmvsc.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 25, phase: 1, result 0, inf: modemcsa.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 26, phase: 1, result 0, inf: prnms003.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 27, phase: 1, result 0, inf: prnms003.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 28, phase: 1, result 0, inf: ntprint.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 29, phase: 1, result 0, inf: ntprint.inf
2014-11-20 18:51:08, Info CBS INSTALL index: 30, phase: 1, result 0, inf: ntprint4.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 31, phase: 1, result 0, inf: wsdscdrv.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 32, phase: 1, result 0, inf: wiasa003.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 33, phase: 1, result 0, inf: wialx00a.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 34, phase: 1, result 0, inf: wialx009.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 35, phase: 1, result 0, inf: wialx008.inf
2014-11-20 18:51:09, Info CBS INSTALL index: 36, phase: 1, result 0, inf: wialx007.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 37, phase: 1, result 0, inf: wiaky003.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 38, phase: 1, result 0, inf: wiahp008.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 39, phase: 1, result 0, inf: wiaep004.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 40, phase: 1, result 0, inf: wiaek002.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 41, phase: 1, result 0, inf: wiadl004.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 42, phase: 1, result 0, inf: wiadl003.inf
2014-11-20 18:51:10, Info CBS INSTALL index: 43, phase: 1, result 0, inf: wiadl002.inf
2014-11-20 18:51:11, Info CBS INSTALL index: 44, phase: 1, result 0, inf: wiadl001.inf
2014-11-20 18:51:11, Info CBS INSTALL index: 45, phase: 1, result 0, inf: wiaca00j.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 46, phase: 1, result 0, inf: wiabr00b.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 47, phase: 1, result 0, inf: sti.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 48, phase: 1, result 0, inf: tsprint.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 50, phase: 1, result 0, inf: sensorsservicedriver.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 51, phase: 1, result 0, inf: sensorshidclassdriver.inf
2014-11-20 18:51:12, Info CBS INSTALL index: 52, phase: 1, result 0, inf: sensorsalsdriver.inf
2014-11-20 18:51:13, Info CBS Progress: UI message updated. Operation type: Update. Stage: 1 out of 1. Percent progress: 9.
2014-11-20 18:51:13, Info CBS Winlogon: TiCoreOnCreateSession has been called
2014-11-20 18:51:13, Info CBS INSTALL index: 53, phase: 1, result 0, inf: locationprovider.inf
2014-11-20 18:51:13, Info CBS INSTALL index: 57, phase: 1, result 0, inf: wpdmtp.inf
2014-11-20 18:51:13, Info CBS INSTALL index: 58, phase: 1, result 1359, inf: wpdfs.inf
2014-11-20 18:51:13, Info CBS Doqe: Recording result: 0x8007054f, for Inf: wpdfs.inf
2014-11-20 18:51:13, Info CBS DriverUpdateInstallUpdates failed [HRESULT = 0x8007054f – ERROR_INTERNAL_ERROR]
2014-11-20 18:51:13, Info CBS Doqe: Failed installing driver updates [HRESULT = 0x8007054f – ERROR_INTERNAL_ERROR]
2014-11-20 18:51:13, Info CBS Perf: Doqe: Install ended.

…..

2014-11-20 18:51:13, Info CBS Perf: Doqe: Unstaging started.
2014-11-20 18:51:13, Info CBS Doqe: [Rollback] Unstaging driver updates, Count 82
2014-11-20 18:51:14, Info CBS Winlogon: TiCoreOnCreateSession has been called
2014-11-20 18:51:14, Info CBS UNSTAGE index: 49, phase: 1, result 0, inf: miradisp.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 54, phase: 1, result 0, inf: mgtdyn.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 55, phase: 1, result 0, inf: idtsec.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 56, phase: 1, result 0, inf: hidscanner.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 0, phase: 1, result 0, inf: usbxhci.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 1, phase: 1, result 0, inf: usbhub3.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 2, phase: 1, result 0, inf: swenum.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 3, phase: 1, result 0, inf: keyboard.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 4, phase: 1, result 0, inf: msmouse.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 5, phase: 1, result 0, inf: acpi.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 6, phase: 1, result 0, inf: vhdmp.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 7, phase: 1, result 0, inf: spaceport.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 8, phase: 1, result 0, inf: wvmbus.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 9, phase: 1, result 0, inf: wvpci.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 10, phase: 1, result 0, inf: wstorflt.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 11, phase: 1, result 0, inf: wnetvsc.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 12, phase: 1, result 0, inf: wvms_pp.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 13, phase: 1, result 0, inf: intelpep.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 14, phase: 1, result 0, inf: sdbus.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 15, phase: 1, result 0, inf: wdma_bt.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 16, phase: 1, result 0, inf: usbcir.inf
2014-11-20 18:51:14, Info CBS UNSTAGE index: 17, phase: 1, result 0, inf: hidbthle.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 18, phase: 1, result 0, inf: bthhfenum.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 19, phase: 1, result 0, inf: bth.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 20, phase: 1, result 0, inf: ehstorpwddrv.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 21, phase: 1, result 0, inf: wudfusbcciddriver.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 22, phase: 1, result 0, inf: wdmaudio.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 23, phase: 1, result 0, inf: usbvideo.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 24, phase: 1, result 0, inf: tpmvsc.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 25, phase: 1, result 0, inf: modemcsa.inf
2014-11-20 18:51:15, Info CBS UNSTAGE index: 26, phase: 1, result 0, inf: prnms003.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 27, phase: 1, result 0, inf: prnms003.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 28, phase: 1, result 0, inf: ntprint.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 29, phase: 1, result 0, inf: ntprint.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 30, phase: 1, result 0, inf: ntprint4.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 31, phase: 1, result 0, inf: wsdscdrv.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 32, phase: 1, result 0, inf: wiasa003.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 33, phase: 1, result 0, inf: wialx00a.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 34, phase: 1, result 0, inf: wialx009.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 35, phase: 1, result 0, inf: wialx008.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 36, phase: 1, result 0, inf: wialx007.inf
2014-11-20 18:51:16, Info CBS UNSTAGE index: 37, phase: 1, result 0, inf: wiaky003.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 38, phase: 1, result 0, inf: wiahp008.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 39, phase: 1, result 0, inf: wiaep004.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 40, phase: 1, result 0, inf: wiaek002.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 41, phase: 1, result 0, inf: wiadl004.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 42, phase: 1, result 0, inf: wiadl003.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 43, phase: 1, result 0, inf: wiadl002.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 44, phase: 1, result 0, inf: wiadl001.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 45, phase: 1, result 0, inf: wiaca00j.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 46, phase: 1, result 0, inf: wiabr00b.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 47, phase: 1, result 0, inf: sti.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 48, phase: 1, result 0, inf: tsprint.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 50, phase: 1, result 0, inf: sensorsservicedriver.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 51, phase: 1, result 0, inf: sensorshidclassdriver.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 52, phase: 1, result 0, inf: sensorsalsdriver.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 53, phase: 1, result 0, inf: locationprovider.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 57, phase: 1, result 0, inf: wpdmtp.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 58, phase: 1, result 0, inf: wpdfs.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 59, phase: 1, result 0, inf: wpdcomp.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 60, phase: 1, result 0, inf: prnxxcl4.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 61, phase: 1, result 0, inf: prnsacl1.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 62, phase: 1, result 0, inf: prnrccl1.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 63, phase: 1, result 0, inf: prnnecl2.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 64, phase: 1, result 0, inf: prnms002.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 65, phase: 1, result 0, inf: prnlxclw.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 66, phase: 1, result 0, inf: prnlxclv.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 67, phase: 1, result 0, inf: prnkycl1.inf
2014-11-20 18:51:17, Info CBS UNSTAGE index: 68, phase: 1, result 0, inf: prnhpcl4.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 69, phase: 1, result 0, inf: prnhpcl3.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 70, phase: 1, result 0, inf: prnhpcl1.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 71, phase: 1, result 0, inf: prnge001.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 72, phase: 1, result 0, inf: prnfxcl2.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 73, phase: 1, result 0, inf: prnepcl2.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 74, phase: 1, result 0, inf: prnekcl2.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 75, phase: 1, result 0, inf: prndlclf.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 76, phase: 1, result 0, inf: prndlcl1.inf
2014-11-20 18:51:18, Info CBS UNSTAGE index: 77, phase: 1, result 0, inf: prncacla.inf
2014-11-20 18:51:19, Info CBS UNSTAGE index: 78, phase: 1, result 0, inf: prncacl2.inf
2014-11-20 18:51:19, Info CBS UNSTAGE index: 79, phase: 1, result 0, inf: prncacl1.inf
2014-11-20 18:51:19, Info CBS UNSTAGE index: 80, phase: 1, result 0, inf: prnbrcl1.inf
2014-11-20 18:51:19, Info CBS UNSTAGE index: 81, phase: 1, result 0, inf: tsgenericusbdriver.inf

…..

2014-11-20 18:55:40, Info CBS Saved last global progress. Current: 1, Limit: 1, ExecuteState: CbsExecuteStateFailed
2014-11-20 18:55:40, Info CBS WER: Generating failure report for package:

Package_2690_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8, status: 0x8007054f, failure source: DOQ, start state: Staged, target state:

Installed, client id: WindowsUpdateAgent
2014-11-20 18:55:40, Info CBS Not able to query DisableWerReporting flag. Assuming not set… [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:55:40, Info CBS Added C:\WINDOWS\Logs\CBS\CBS.log to WER report.
2014-11-20 18:55:48, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:55:51, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:55:53, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:55:56, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:55:59, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:56:00, Info CBS Not able to add %windir%\winsxs\pending.xml to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:56:00, Info CBS Not able to add %windir%\winsxs\pending.xml.bad to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:16, Info CBS Startup: Package: Package_2690_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x8007054f
2014-11-20 18:59:16, Info CBS WER: Generating failure report for package:

Package_for_KB3000850_RTM_GM~31bf3856ad364e35~amd64~~6.3.1.8, status: 0x8007054f, failure source: DOQ, start state: Staged, target state:

Installed, client id: WindowsUpdateAgent
2014-11-20 18:59:16, Info CBS Not able to query DisableWerReporting flag. Assuming not set… [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CBS.log to WER report.
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:16, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:16, Info CBS Not able to add %windir%\winsxs\pending.xml to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:16, Info CBS Not able to add %windir%\winsxs\pending.xml.bad to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:20, Info CBS Startup: Package: Package_for_KB3000850_RTM_GM~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x8007054f
2014-11-20 18:59:20, Info CBS WER: Generating failure report for package:

Package_for_KB3000850_RTM~31bf3856ad364e35~amd64~~6.3.1.8, status: 0x8007054f, failure source: DOQ, start state: Staged, target state:

Installed, client id: WindowsUpdateAgent
2014-11-20 18:59:20, Info CBS Not able to query DisableWerReporting flag. Assuming not set… [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CBS.log to WER report.
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:20, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 18:59:20, Info CBS Not able to add %windir%\winsxs\pending.xml to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 18:59:20, Info CBS Not able to add %windir%\winsxs\pending.xml.bad to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 19:01:32, Info CBS Startup: Package: Package_for_KB3000850_RTM~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x8007054f
2014-11-20 19:01:32, Info CBS WER: Generating failure report for package:

Package_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8, status: 0x8007054f, failure source: DOQ, start state: Staged, target state:

Installed, client id: WindowsUpdateAgent
2014-11-20 19:01:32, Info CBS Not able to query DisableWerReporting flag. Assuming not set… [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CBS.log to WER report.
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 19:01:32, Info CBS Added C:\WINDOWS\Logs\CBS\CbsPersist_(datetime).log to WER report.
2014-11-20 19:01:32, Info CBS Not able to add %windir%\winsxs\pending.xml to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 19:01:32, Info CBS Not able to add %windir%\winsxs\pending.xml.bad to WER report. [HRESULT = 0x80070002 –

ERROR_FILE_NOT_FOUND]
2014-11-20 19:03:48, Info CBS SQM: Reporting package change completion for package:

Package_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8, current: Staged, original: Staged, target: Installed, status: 0x8007054f, failure

source: DOQ, failure details: “Driver servicing operation failed”, client id: WindowsUpdateAgent, initiated offline: False, execution

sequence: 841, first merged sequence: 841, pending decision: Unknown, primitive execution context: PSRL
2014-11-20 19:03:48, Info CBS SQM: Unable to gather perf datapoints because there are no active sessions.
2014-11-20 19:03:48, Info CBS SQM: Upload requested for report:

PackageChangeEnd_Package_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8, session id: 142862, sample type: Standard
2014-11-20 19:03:48, Info CBS SQM: Ignoring upload request because the sample type is not enabled: Standard
2014-11-20 19:03:48, Info CBS Startup: Package: Package_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed startup

processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x8007054f
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1021_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1022_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1039_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1040_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1049_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826
2014-11-20 19:03:48, Info CBS Retrieved original failure status: 0x8007054f, last forward execute state:

CbsExecuteStatePrimitives
2014-11-20 19:03:48, Info CBS Startup: Package: Package_1050_for_KB3000850~31bf3856ad364e35~amd64~~6.3.1.8 completed

startup processing, new state: Staged, original: Staged, targeted: Installed. hr = 0x800f0826

wpdfs.inf のインストールに失敗しています。「サードパーティーの INF ファイルにデジタル署名がありません」


次の手順で適用することができました。

  1. コマンドプロンプトで bcdedit /set {bootmgr} displaybootmenu yes を実行して再起動します。起動時に スタートアップ設定 の画面が表示されるようになります。
  2. スタートアップ設定 の 7.ドライバー署名の強制を無効にする を選択して Windows 8.1 を起動させます(7 を押します)。
  3. Windows Update で KB3000850 を選択して更新プログラムを適用します。
  4. 再起動の前に次の操作を行います。
  5. エクスプローラーを開き、%SystemRoot%\WinSxS\amd64_wpdfs.inf_31bf3856ad364e35_6.3.9600.17415_none_16f7d068a65934fd\wpdfs.inf を選択してインストールを実行します。「ドライバー ソフトウェアの発行元を検証できません」ダイアログが表示されます。「このドライバー ソフトウェアをインストールします」を選択してインストールします。(念のため同様の操作を %SystemRoot%\WinSxS\amd64_wpdcomp.inf_31bf3856ad364e35_6.3.9600.17415_none_6a9c3cd8df3c50f3\wpdcomp.inf, %SystemRoot%\WinSxS\amd64_tsgenericusbdriver.inf_31bf3856ad364e35_6.3.9600.17415_none_2b57bdbce7e6e0d1\tsgenericusbdriver.inf について行います。)
  6. Windows を再起動します。もう一度 7.ドライバー署名の強制を無効にする を選択して Windows 8.1 を起動します。
  7. %SyetemRoot%\System32\DriverStore\FileRepository の対応するバージョンのフォルダーの infファイルとPNFファイルを %SystemRoot%\Inf フォルダーにコピーします。
  8. コマンドプロンプトで bcdedit /set {bootmgr} displaybootmenu no を実行します。

KB3011780 は Windows 8/8.1 と Windows 7 があります。


When KB3000850 (KB3014442) installs on Windows 8.1 x64 Update 1, it gets error 800f0826, 8007054f.

It display “Configuaring Windows Update” about from 7% to 9%”. After rebooting, it shows “Failure configuring Windows updates Reverting changes”, “Do not turn off your computer”. It reboots again, display the same message, and fails the update.

Failed to install wpdfs.inf. “The third-party INF does not contain digital signature information.”

I was able to solve the problem by performing following steps.

  1. Open a command prompt windows with Administrator privileges. Run to “bcdedit /set {bootmgr} displaybootmenu yes”. When to restart the Windows, you look like “Startup Settings” screen is displayed.
  2. Select to “7.Disable driver signature enforcement”.
  3. Install KB3000850.
  4. Do the following tasks before rebooting Windows.
  5. Open explorer.exe, and select to “%SystemRoot%\WinSxS\amd64_wpdfs.inf_31bf3856ad364e35_6.3.9600.17415_none_16f7d068a65934fd\wpdfs.inf”, “%SystemRoot%\WinSxS\amd64_wpdcomp.inf_31bf3856ad364e35_6.3.9600.17415_none_6a9c3cd8df3c50f3\wpdcomp.inf”,and “%SystemRoot%\WinSxS\amd64_tsgenericusbdriver.inf_31bf3856ad364e35_6.3.9600.17415_none_2b57bdbce7e6e0d1\tsgenericusbdriver.inf”. Open a dialog as “Windows can’t verify the publisher of this driver software”. Select to “Install this driver software anyway.”
  6. Restart the Windows. Select to “7.Disable driver signature enforcement” again.
  7. Copy inf and PNF files that correspond to the Windows Update in “%SyetemRoot%\System32\DriverStore\FileRepository” folder to “%SystemRoot%\Inf” folder.
  8. Open a command prompt windows with Administrator privileges. Run to “bcdedit /set {bootmgr} displaybootmenu no”.

Windows Update


2014年11月の月例パッチについて Windows 10 Technical Preview は対象に含まれないようです。