<#
.SYNOPSIS
    GUI listview of symbolic links, selection opens path in explorer.
#>

$ReparsePoints = Get-ChildItem -Path $ENV:USERPROFILE -Recurse -Depth 4 |
Where-Object { $_.Attributes -match "ReparsePoint" }
$Selection = $ReparsePoints | Out-GridView -PassThru -Title "Symbolic Links"
if ( $Null -ne $Selection) { Invoke-Item $Selection }