【问题标题】:SharePoint Online - How to activate SharePoint Designer 2013SharePoint Online - 如何激活 SharePoint Designer 2013
【发布时间】:2023-12-31 06:34:01
【问题描述】:

使用 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】:
    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: Enable SharePoint Designer using PowerShell

    【讨论】:

      【解决方案2】:

      除了网站权限外,请确保安装 SharePoint Designer SP1 以在线访问 SharePoint。

      【讨论】:

      • 是的,安装 SP1 kb 也很重要。如果它有助于解决问题,您可以将回复标记为答案,以便它也可以帮助论坛中的其他人。 :)