web-dev-qa-db-ja.com

Windows10-更新が失敗している

Windows 10にインストールできない2つの更新プログラムがあります。これら2つは、エラーが発生しています。

  • X64ベースのシステム用のWindows10の累積的な更新(KB3081438)-エラー0x80070bc9

  • X64ベースのシステム用のWindows10の更新(KB3081704)-エラー0x80070643

私はWindows7からアップグレードされたwin10 64ビットを実行しています。エラーなしでこれらをインストールするためにできることはありますか?

KB3081438をインストールしましたが、今はKB3081704です。

2
Jeff

以下の手順に従って、WindowsUpdateコンポーネントをリセットしてください。

Press Windows Key + X on the keyboard and then select “Command Prompt (Admin)” from the menu.
Stop the BITS, Cryptographic, MSI Installer and the Windows Update Services. To do this, type the following commands at a command Prompt. Press the “ENTER” key after you type each command.

                       net stop wuauserv

                       net stop cryptSvc

                       net stop bits

                       net stop msiserver
  1. 次に、SoftwareDistributionおよびCatroot2フォルダーの名前を変更します。これを行うには、コマンドプロンプトで次のコマンドを入力します。各コマンドを入力した後、「ENTER」キーを押します。

                      ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
    
                      ren C:\Windows\System32\catroot2 Catroot2.old
    
  2. それでは、BITS、暗号化、MSIインストーラー、およびWindows UpdateServicesを再起動しましょう。このためのコマンドプロンプトに次のコマンドを入力します。各コマンドを入力した後、ENTERキーを押します。

                    net start wuauserv
    
                    net start cryptSvc
    
                    net start bits
    
                    net start msiserver
    
  3. コマンドプロンプトで「終了」と入力して閉じます。

2
NobleMan