我正在使用 powershell 脚本创建许多站点。现在,当每个站点都完成后,我想激活它的功能。
我的问题是,当我这样做时,网站准备好需要一些时间。尤其是在 SharePoint Online 中,很难预测网站何时准备就绪。我试过使用时间循环,但我想知道是否有可以查询的状态设置。
有什么想法吗?
我正在使用 powershell 脚本创建许多站点。现在,当每个站点都完成后,我想激活它的功能。
我的问题是,当我这样做时,网站准备好需要一些时间。尤其是在 SharePoint Online 中,很难预测网站何时准备就绪。我试过使用时间循环,但我想知道是否有可以查询的状态设置。
有什么想法吗?
实际上我们解决了这个问题。siteCreationOperation 有一个名为 isComplete 的属性。对此进行迭代并获取布尔值以进行进一步处理:)
#Create the site using the properties
$tenant.CreateSite($properties) | Out-Null
...
...
$siteCreationOperation = $tenant.CreateSite($properties)
$ctx.Load($siteCreationOperation)
...
...
#Create the site in the tennancy
...
...
do
{
...
...
$ctx.Load($siteCreationOperation)
$ctx.ExecuteQuery()
Write-Host $siteCreationOperation.IsComplete
...
...
}
...
while (!$siteCreationOperation.IsComplete)
...
这是对我有用的东西:
Connect-SPOService -Url $adminUrl -Credential $credentials
while ((Get-SPOSite -Filter "Url -like '*$($properties.Url)*'").Status -ne "Active")
{
Write-Host "." -NoNewline
Sleep -s 10
}
其中管理员 URL 是https://Contonso-Admin.sharepoint.com而 Properties.Url 是我正在寻找的站点,所以类似于https://Contonso.sharepoint.com/sites/Test1
这将起作用,但您最好对站点进行测试,然后执行另一个循环来测试创建列表或库之类的最后一个工件。我只在本地而不是在线实例上对此进行了测试
$site = Get-SPSite <Site here> -ErrorVariable err -ErrorAction SilentlyContinue -AssignmentCollection $assignmentCollection
if($err)
{
while($err)
{
Write-Host "Waiting for site to be created"
Start-Sleep -seconds 5
$site = Get-SPSite <site here> -ErrorVariable err -ErrorAction SilentlyContinue -AssignmentCollection $assignmentCollection
}
#while loop for the last artifact that you are waiting for as the site will create but it may not be fully ready
}
干杯
特鲁兹