PowerShell: Show Fullpath, and No Truncate Lines

By Xah Lee. Date: . Last updated: .

PowerShell is very annoying. It does not show full path. Or, it truncates file paths if the window width is not wide enough.

There is no simple way to make any output not truncate.

you can work around by:

example

# list file, show full path
dir -recurse | % {$_.fullname}
dir -recurse | select -property fullname | fl