Some time we need to get all the list of specific type developed and used in a SharePoint 2010 site.We can get all the lists used in SharePoint by below script.
- Get-SPWeb http://win-ohmrv9tijth:1000/ |
- Select -ExpandProperty Lists |
- Where { $_.GetType().Name -eq "SPList" } |
- Select Title