get-ChildItem C:\ -recurse -erroraction silentlycontinue | sort length -descending | select -first 10 FullName,length
Result:
C:\Program Files\Microsoft SQL Server\120\Setup Bootstra... 88821760
FullName is not getting printed.How can I fix this ?
Thanks