On every home directory will be a folder called Files. I was curious how big these folders are. So this is why I created the following Powershell script:
function Get-Foldersize{ param([string]$StartFolder, [string]$SubFolder) $Dirs = Get-ChildItem -path $StartFolder\* -Recurse -Include $SubFolder foreach($Dir in $Dirs){ $objFSO = New-Object -com Scripting.FileSystemObject "$Dir = " + "{0:N2}" -f (($objFSO.GetFolder("$Dir").Size) / 1MB) + " MB" } } Get-FolderSize C:\Users Files
The output of the script will look like this:
Here are some pictures (as hard evidence 😉 ) of the folder properties: