Windows UpdateとMicrosoft Storeのエラーについて、以下の手順を試してみてください。
A. BITSとWindows Updateサービスの再起動
Win + Rキーを押し、services.mscと入力してEnterキーを押します。「Background Intelligent Transfer Service (BITS)」と「Windows Update」を探します。それぞれのサービスを右クリックし、「再起動」を選択します。B. Windows Updateキャッシュのクリア
管理者としてコマンドプロンプトを開きます。以下のコマンドを順番に実行してサービスを停止します。net stop wuauservnet stop cryptSvcnet stop bitsnet stop msiserverエクスプローラーでC:\Windows\SoftwareDistribution\Downloadを開き、フォルダ内のすべてのファイルを削除します。以下のコマンドでサービスを再開します。net start wuauservnet start cryptSvcnet start bitsnet start msiserverC. Windows Updateコンポーネントのリセット
管理者としてコマンドプロンプトを開きます。サービスを停止します(上記Bの手順2と同じ)。以下のコマンドでフォルダ名を変更します。ren C:\Windows\SoftwareDistribution SoftwareDistribution.oldren C:\Windows\System32\catroot2 Catroot2.oldサービスを再開します(上記Bの手順4と同じ)。D. システムファイルの破損チェック (DISM)
sfcは既に実行済みとのことなので、DISMユーティリティを試します。管理者としてコマンドプロンプトを開き、以下のコマンドを実行してください。DISM /Online /Cleanup-Image /RestoreHealth
E. Microsoft Storeの再登録
管理者としてPowerShellを開きます。以下のコマンドを実行します。Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}これらの手順を完了後、再度Windows Updateを実行して問題が解決したか確認してください。