Frage

I am trying to create a new site collection with powershell in the root path http://mysite/search/

    $siteName = "Search";
    $webAppUrl = "http://sharepoint";
    $siteUrl = "$webAppUrl/$siteUrl";

    New-SPSite -Url $siteUrl -OwnerAlias $ownerAlias -SecondaryOwnerAlias $secondaryOwnerAlias -ContentDatabase $databaseName -Template $template -Name $siteName;

I get the error below:

New-SPSite : A site collection could not be created as the provided managed path does not exist.

War es hilfreich?

Lösung

If you are looking to create an site collection, you need to create an explicit managed path for "/search". In central administration, under the manage web applications screen, highlight the web application, then select managed path.

Create an explicit managed path called "/search" and try your powershell script again.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top