<# .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 }