Domanda

Sono in esecuzione il seguente script PowerShell sul mio server SharePoint per creare una nuova raccolta sita host-header e un sito inquilino admin:

Add-PSSnapin microsoft.sharepoint.powershell -ea SilentlyContinue

$featurePackID = "23b570e2-61f8-40ca-8e4d-7625ac7a4d37"
$webApplicationURL = "https://myserver"
$url = "https://test.mysharepoint.com" 
$owneralias = "TEST\SP_App01"
$contentDatabase = "WSS_Content_WebApp01"
$template = "STS#0"

$sub = New-SPSiteSubscription

if(!$url.StartsWith("https://")){ $url = "https://$url"; }
if(!$url.StartsWith($webApplicationURL))
{ 
    $hostheader = 'y' 
} 

#Set Feature Pack
if ($featurePackID -ne "")
{
    $FeaturePack = Get-SPSiteSubscriptionFeaturePack $featurePackID
}
if($FeaturePack -ne "" -and $FeaturePack -ne $null){
  Set-SPSiteSubscriptionConfig $sub -FeaturePack $FeaturePack
}

if($hostheader -ieq 'y' -or $hostheader -ieq 'yes'){
  #Pre-Reqs
  if( (Get-SPManagedPath -HostHeader "admin" -ea SilentlyContinue) -eq $null){$void = New-SPManagedPath "admin" -hostheader -explicit}

  $wa = Get-SPWebApplication $webApplicationURL
  New-SPSite $url -owneralias $owneralias -sitesubscription $sub -hostheaderwebapplication $wa -template $template -contentdatabase $contentdatabase #| set-spsite -maxsize 5000000 -warningsize 4000000 
  New-SPSite "$url/admin" -owneralias $owneralias -sitesubscription $sub -template "TENANTADMIN#0" -Administrationsitetype "TenantAdministration" -hostheaderwebapplication $wa -contentdatabase $contentdatabase #| set-spsite -maxsize 5000000 -warningsize 4000000 

}
else{
  New-SPSite $url -owneralias $owneralias -sitesubscription $sub -template "STS#0" | set-spsite -maxsize 5000000 -warningsize 4000000
  New-SPSite "$url/admin" -owneralias $owneralias -sitesubscription $sub -template "TENANTADMIN#0" -Administrationsitetype "TenantAdministration" | set-spsite -maxsize 5000000 -warningsize 400000
}

Comunque sto ottenendo il seguente errore:

New-SPSite: Il riferimento non impostato a un'istanza di un oggetto. + New-SPSite <<<< $ url -owneralias $ owneralias -sitesubscription $ Sub -hostheaderwebapplication $ wa -template $ template -contentdata Base $ ContentDatabase # | set-SPSite -maxsize 5000000 -warningsize 4000000 + CategoryInfo: InvalidData: (Microsoft.Share ... SPCmdletNewSite: SPCmdletNewSite) [New-SPSite], NullReferenceException + FullyQualifiedErrorId: Microsoft.SharePoint.PowerShell.SPCmdletNewSite

Tutte le idee perché?

È stato utile?

Soluzione

Questa si è rivelata un errore di autorizzazioni. I ri-eseguito lo script, senza specificare il modello, ma impostare il mio account come le OwnerAlias. Poi mi sono imbattuto questo script per impostare il modello:

Get-SPSite https://test.mysharepoint.com | Set-SPSite -Template "TenantAdmin#0" -Administrationsitetype "TenantAdministration"

E oplà - tutto lavoro. Poi sono andato dentro e cambiato il proprietario felicemente.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top