5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windowsのディスクが急に枯渇した

Last updated at Posted at 2019-10-31

急にWindowsのディスクの空き容量が見るみる減っていって枯渇してしまい、なかなか復旧できなかったのでメモ。
Windows10なのかOffice365アプリなのか解らないがSurfaceHubなるものが悪さをしていたもよう。

Cドライブ直下のフォルダの容量をエクスプローラのフォルダプロパティで確認したが、容量を食っているフォルダを特定できなかった。最終的に C:\Windows\Temp に大量のイベントログファイルが出来ていることを発見。
(サポート会社にてTreeSizeFreeというアプリを使ったらすぐに解った)

増え続けているファイルを確認
→ AppXDeploymentServer_9D55CF2F-8FC3-0000-0A24-569DC38FD501.evtx
 など AppXから始まるファイルが大量に発生していた

この AppXDeploymentServer_~.evtx のイベント内容を見ると

PackageName Microsoft.SurfaceHub_8wekyb3d8bbwe
ErrorText AppX パッケージのマニフェストが無効です。  
ErrorCode 0x80080204

というような SurfaceHub に関連したものがほとんどのもよう。

「AppX パッケージのマニフェストが無効です。」を検索して
https://answers.microsoft.com/ja-jp/windows/forum/all/windows-10/2b6bd0ca-34e3-4b0f-8a2f-9379909fa950
が見つかったので下記を実行したら、
AppX~ファイルの大量発生はなくなりました。

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

PS C:\windows\system32> Get-AppxPackage -name *SurfaceHub*


Name              : Microsoft.SurfaceHub
Publisher         : CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
Architecture      : X64
ResourceId        :
Version           : 39.600.139.0
PackageFullName   : Microsoft.SurfaceHub_39.600.139.0_x64__8wekyb3d8bbwe
InstallLocation   : C:\Program Files\WindowsApps\Microsoft.SurfaceHub_39.600.139.0_x64__8wekyb3d8bbwe
IsFramework       : False
PackageFamilyName : Microsoft.SurfaceHub_8wekyb3d8bbwe
PublisherId       : 8wekyb3d8bbwe
IsResourcePackage : False
IsBundle          : False
IsDevelopmentMode : False
Dependencies      : {Microsoft.NET.Native.Framework.2.2_2.2.27912.0_x64__8wekyb3d8bbwe, Microsoft.NET.Native.Runtime.2.
                    2_2.2.27328.0_x64__8wekyb3d8bbwe, Microsoft.VCLibs.140.00_14.0.27323.0_x64__8wekyb3d8bbwe, Microsof
                    t.SurfaceHub_39.600.139.0_neutral_split.language-ja_8wekyb3d8bbwe...}
IsPartiallyStaged : False
SignatureKind     : Store
Status            : Ok



PS C:\windows\system32> Get-AppxPackage -name *SurfaceHub* | Remove-AppxPackage
PS C:\windows\system32> Get-AppxPackage -name *SurfaceHub*
PS C:\windows\system32>
5
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?