gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 00:43:24 24 4
gpt4 key购买 nike

我正在使用Powershell脚本使用Pattern and Practices libraries创建新的SharePoint网站。我需要更改语言环境并将“”替代语言添加到“经典团队”网站。

PnP库有可能吗?

谢谢。

最佳答案

您可以使用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 - 您可以使用Powershell PnP设置SharePoint网站的区域设置和语言吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54224860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com