您可以使用Powershell PnP设置SharePoint网站的区域设置和语言吗

时间:2019-01-16 20:26:56

标签: powershell sharepoint sharepoint-online

我正在使用Powershell脚本使用Pattern and Practices libraries创建新的SharePoint网站。我需要更改区域设置,并向“经典团队”网站添加替代语言

PnP库有可能吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以使用get-pnpcontext cmdlet。所以要添加例如您可以使用德语(LCID 1031)到您的共享站点:

$Context = Get-PnPContext
$Web = $Context.Web
$Context.Load($Web)
Invoke-PnPQuery

$Web.IsMultilingual = $true
$Web.AddSupportedUILanguage(1031)
$Web.Update()
Invoke-PnPQuery