Add -AutoSize to the end of ft (Format-Table), so PowerShell displays the entire line (instead of cutting it off).
Get-ChildItem -Path "C:\" -Force -Recurse -ErrorAction SilentlyContinue | Where-Object { $_.LinkType -ne $null -and $_.LinkType -ne "HardLink" } | ft FullName,Linktype,LinkTarget...