首页 > 解决方案 > SharePoint Online - 如何激活 SharePoint Designer 2013

问题描述

使用 SPD2013 在线连接到 SharePoint 时,我收到一条消息:

您无权在 SharePoint Designer 中打开此网站

我使用顶级管理员帐户登录到 office 365 SharePoint Online 管理中心。我注意到没有诸如启用 SharePoint Designer自定义脚本选项之类的选项。

我尝试从 PS 激活,但连接返回消息当前站点不是租户管理站点。

Connect-SPOService -Url https://mydomain.sharepoint.com/sites/mydev101 -credential developer@domain.com

标签: sharepoint-online

解决方案


  1. 确保用户对目标网站集或网站具有设计者、所有者或管理员权限。

  2. 使用 Connect-SPOService 命令激活时,管理中心 url 如下所示:

    https://Tenantname-admin.sharepoint.com

     $AdminSiteURL="https://Crescent-Admin.sharepoint.com"
     $SiteURL="https://crescent.sharepoint.com/sites/creditpipeline"
    
     #Connect to SharePoint Online Admin Center
     Connect-SPOService -Url $AdminSiteURL -Credential (Get-Credential)
    
     #Enable SharePoint Designer for the site collection
     Set-SPOSite -Identity $SiteURL -DenyAddAndCustomizePages $False
    

参考:

SharePoint Online:使用 PowerShell 启用 SharePoint Designer


推荐阅读