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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
scroll top