Microsoft Power BI – how to create a simple ‚Treemap‘ of disk folder information

PS C:\Users\josef> cd \
PS C:\> cd tmp
PS C:\tmp> $now = get-date ; Get-ChildItem c:\PC_SAVE -Recurse -File `| select directory,name,fullname,length,@{name=“Age“;Expression={[int]($now – $_.LastWriteTime).totaldays}}` | export-csv -NoTypeInformation -Encoding unicode .\dir.csv
PS C:\tmp>

Leave a Reply

You must be logged in to post a comment.