您可以使用 Powershell PnP 设置 SharePoint 网站区域设置和语言吗
Posted
技术标签:
【中文标题】您可以使用 Powershell PnP 设置 SharePoint 网站区域设置和语言吗【英文标题】:Can you set a SharePoint site Locale and Languages using Powershell PnP 【发布时间】:2019-06-10 23:59:54 【问题描述】:我正在编写一个 Powershell 脚本,以使用 Pattern and Practices libraries 创建新的 SharePoint 网站。我需要更改区域设置并向“经典团队”网站添加替代语言。
PnP 库可以做到这一点吗?
谢谢。
【问题讨论】:
【参考方案1】:您可以使用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
【讨论】:
感谢您的帮助!以上是关于您可以使用 Powershell PnP 设置 SharePoint 网站区域设置和语言吗的主要内容,如果未能解决你的问题,请参考以下文章
需要使用 PnP PowerShell 在 SharePoint Online 中添加语言翻译器
SharePoint PnP PowerShell - 从“选择”字段中进行选择
ConvertTo-PnPClientSidePage 在 PnP PowerShell 中不可用