I've created a Powershell script to get all the lists in my site with their Guids. This is working but I also want the script to the return the URL.
$_.Lists | ForEach-Object {Write-host "List:"$_.Title ":"$_.Id > C:\Guids.csv}
Can someone point me in the right direction. Thanks.