1. 问题描述:

 在SharePoint 2013 文档库中打开Excel 文件提示"The workbook cannot be opened" 错误提示框,文档不能正常显示。

2、问题原因:

 这个错误的原因应该是Excel Service的帐号对Content Database没有合适的访问权限。当你上传一个文档到文档库时,文档以blobs的形式保存在内容数据库中,再当你打开文档时,Excel Service的帐号就要查询数据库并重新生成文档,如果Excel Service的帐号没有合适足够的权限,则就会发生上述错误。

3、解决方案:

赋予合适的权限给Excel Service的帐号。

3.1. 找到Excel Service的帐号
Central Administration > Security > Configure Service Accounts > 选择 "Excel Services Application" 选项。

TroubleShoot: Excel Services Fix - "The workbook cannot be opened".

3.2. 赋予合适的权限

$w = Get-SPWebApplication –Identity http://tschauer
$w.GrantAccessToProcessIdentity("Devtest\Excel_Services_Account") 

 

相关文章:

  • 2021-08-06
  • 2022-12-23
  • 2021-12-05
  • 2021-04-17
  • 2022-01-12
  • 2021-06-05
  • 2021-09-23
  • 2021-10-27
猜你喜欢
  • 2021-06-23
  • 2021-10-13
  • 2022-12-23
  • 2021-10-09
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案