Hello all,
I am trying to run a basic script to get a list or large files on a directory, however I am hitting the 260 char limit on either folders or filenames. Is there a way to massage the results so the script can run properly? Script below:
Get-ChildItem c:\ -recurse | sort -property length -desc | select -first 10 | format-table Name, Length -autosize