Find the location of Central Admin in Sharepoint using Powershell
My current project requires creating a Taxonomy through the Metadata Service. The starting point for all this work is finding out where Central Administration lives.
The following code will return the WebApplication details:
$centralAdminWebApp = Get-SPWebApplication -includecentraladministration | where {$_.IsAdministrationWebApplication}
Comments
Post a Comment