本文主要是介绍Create a blank Page using PnpScript,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Sharepoint用pnp语句创建一个空白页面
# 创建页面(禁用Comments)
Add-PnPPage -Name $singlePage -Title $singlePage -LayoutType Home -CommentsEnabled:$false
# 为刚刚新建的页面添加一个OneColumn的空白Section
Add-PnPPageSection -Page $singlePage -SectionTemplate OneColumn
生成结果如下图
这篇关于Create a blank Page using PnpScript的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!