PowerShell: Show Fullpath, and No Truncate Lines
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
select
is alias ofSelect-Object
fl
is alias ofFormat-List