partition size is 334 GB with 192GB free, so space is definitely NOT the issue.
@ Ron
The problem partition appeared to be the System partition. Supposedly something gets changed there. It is usually measured in MB. Use diskmgmt.msc to see them and how much Free Space there is. Use diskpart list volume to see more about it. However,
I only know how to access it during a boot... OK. FWIW we can use diskpart to actually get to it, assign a letter to it and then do a dir! Who knew? And that shows that the last write was done 2014-03-02. Now what? Oh. I suppose I can use DISM /get-packages
and try a find... Even better I can use Powershell's equivalent cmdlet and do the same thing... No. That doesn't make any sense. I only got this machine in April. ; /
Ah. For my Surface RT 2 it may be a different story. With it when I delve into its System drive
B:\EFI\Microsoft\Boot>dir/tw/od
I see two relatively recent writes:
2014-02-22 07:17 760,680 bootmgfw.efi
2014-02-22 07:17 758,120 bootmgr.efi
Then going into Powershell I get this:
PS B:> Get-WindowsPackage -Online | ft InstallTime,PackageName -AutoSize | Out-String -Stream | Select-String -Pattern "2014-02-22"
2014-02-22 01:30:00 Package_for_KB291934~31bf3856ad364e35~arm~6.3.1.3
That was a transcription. I hope there aren't any typos but at least it will give you the right idea. There are some other directories that I didn't explore. Just trying to find something that would possibly match an update. But then it may only be
a coincidence because the timestamps are not consistent with the update I found, so who knows?
FWIW in my case it is a 200 MB partition with (according to dir) 178 free.
But I also speculated to someone else making the same claim about their symptom that perhaps it could be referring to Virtual memory? Which I then tied to Marek's account about being rather meticulous about removing stuff that might have cost memory, e.g.
if the programmer was trying to read everything in and use RAM. (My interpretation of what was done, not something that I read.) Or WinPE supposedly creates RAM drives, so maybe that was a "disk" that got too full. Again, who knows? For us, I think, only
a trace can explain what is really going on.
FYI
Robert