SharePoint快速启动无法打开

时间:2019-07-13 03:37:17

标签: sharepoint sharepoint-2013

我想编辑SharePoint 2013 Standard网站左侧的链接。单击“编辑链接”,然后将链接更改为所需站点,然后保存,将显示错误“此操作已超时。请重试。”并单击快速启动保持旋转。我可以完全访问该网站。

可能是什么原因?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

您是否考虑过使用PowerShell作为解决方法?如果SharePoint中的某些内容是OOB,并且无法正常工作,我总是会考虑使用PS来修复某些问题:)。 对于您的情况,可以使用以下方法解决问题(删除和更新示例):



    if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) 
    {
        Add-PSSnapin "Microsoft.SharePoint.PowerShell"
    }

    $SPWeb = Get-SPWeb "[URL]";
    $QuickLaunch = $SPWeb.Navigation.QuickLaunch;
    foreach($item in $QuickLaunch)
    {
        $item.Title;
        if($item.Title -eq '[quickLunchItemTitleToDelete]')
        {
            $SPWeb.Navigation.GetNodeById($item.Id).Delete();
        }
        if($item.Title -eq '[quickLunchItemTitleToModify]')
        {
             $item.Title = "[NewName]";
             $item.Update();
        }
    }

我还看到您在网站设置中具有指向“快速午餐”的链接。但是,您可以打开Web中的功能来获取更高级的“导航”链接,也许可以从那里开始修改所需的链接。

  1. 转到网站设置>在网站集管理下>网站集 功能
  2. 单击“激活SharePoint Server发布的前端” 基础设施

但是请注意,启用此功能还会将您不希望的其他组件添加到Your中。

我希望这会对您有所帮助:)