結論を先に言ってしまうと、WinSxS Folderが肥大化してしまっていたらしい。
Windowsの「C:\Windows\WinSxS」ディレクトリは「コンポーネントストア」とも呼ばれ、Windowsのサービシング(Servicing、Windowsの機能や更新プログラムのインストール/アンインストールなど)に関係するファイルの格納場所となっています。
なので、WinSxSのサイズを圧縮してあげれば良いようです。
Log file in here C:\Windows\Logs\DISM\
dism /online /cleanup-image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:E:\path-to-the-WIM\Install.wim:1 /LimitAccess
(download ISO of OS and mount it to access install.wim or copy install.wim to somewhere and use the path to it in above command)
NOTE: the :1 refers to the OS folder inside (e.g. Server 2016 Standard is :1 and Datacebter maybe like :3). check with this command to find/conform which one:
dism /Get-WimInfo /WimFile:H:\sources\install.wim
dism /online /cleanup-image /startcomponentcleanup
and maybe you want do:
Dism /online /Cleanup-Image /StartComponentCleanup /ResetBase
( removes all superseded versions of every component in the component store)