List Your Favorites in PowerShell
Here's a little one-liner to list out your all your Internet Explorer favorites: gci $env:userprofile\favorites -rec -inc *.url | ? {select-string -inp $_ -quiet "^URL=http"} | select @{Name="Name"; Expression={[IO.Path]::GetFileNameWithoutExtension($_.FullName)}}, @{Name="URL"; Expression={get-content...