Showing posts with label names of content databases for each web app. Show all posts
Showing posts with label names of content databases for each web app. Show all posts

Thursday, October 4, 2012

Trick and Tip: How to know associated content databases to each web application in SharePoint using powershell


Here one small cmdlet to know content databases details for each web application in my SharePoint.
For this am going to use the following powershell cmdlet
"Get-SPWebApplication | %{Write-Output "`n- $($_.url)"; foreach($cd in $_.contentdatabases){Write-Output $cd.name}} "
and OutPut is like this