惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Jina AI
Jina AI
月光博客
月光博客
F
Fortinet All Blogs
Stack Overflow Blog
Stack Overflow Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
P
Proofpoint News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
L
LangChain Blog
博客园 - 聂微东
G
Google Developers Blog
博客园 - Franky

博客园 - 青松阳光

SharePoint 2013 & Office 365 新版本功能列表 Windows PowerShell for SharePoint Command Builder SharePoint Server 2013 RTM 开发测试虚拟机部署文档 SharePoint Reaches RTM! SharePoint 2013 Designer 去掉Design View的原因,官方有了正式的解释 Office 365 Enterprise Preview SharePoint Server 2013 Preview 新变化 SharePoint Server 2013 Preview虚拟机安装步骤文档 Office 2013 和 SharePoint 2013开发学习视频 开发自定义字段时一定要注意复合控件的ID问题 彻底解决SharePoint开发Debug中弹出的IIS Ping超时问题 推荐两本SharePoint2010开发必看的书籍 MSDN针对SharePoint 2010提供了101个解决方案示例代码供下载 2010 Information Worker Demonstration and Evaluation Virtual Machine (SP1) 提供下载 使用XSLT和XML创建Excel 在SharePoint中服务器端使用Word编程模型转换PDF遇到的问题以及解决方法 Thinkpad T410 安装Windows Server 2008 R2 启用Hyper-v蓝屏故障解决方法 Visual Studio 2008 Extensions for Windows SharePoint Services 3.0(VSeWSS) 1.3版本发布 SPDisposeCheck 工具新版本发布
Office Web App 安装完之后发现在线查看Word或者PPT发生错误...
青松阳光 · 2012-03-12 · via 博客园 - 青松阳光

1.       原因:

相关的服务应用程序和DC安装在了同一台服务器上,此服务应用程序包括:

A.      Word Viewing Service 应用程序

B.      PowerPoint Service 应用程序

2.       解决方法:

PowerShell窗口中运行以下命令:

#Enable Word Web App:

$e = Get-SPServiceApplication | where {$_.TypeName.Equals("Word Viewing Service 应用程序")}

$e.WordServerIsSandboxed = $false

#Enable PowerPoint Web App – you need to answer “Y” for each command:

Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedViewing $false

Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedEditing $false

IISRESET /NOFORCE

3.       结果

 After following above steps viewing and editing of PowerPoint files worked without any issue. But for word files editing worked but viewing encountered the same issue,

Wonder what’s wrong with the issue and came no solutions.. But after I edit the uploaded word file and saved and viewed on browser everything worked fine there after.

It’s recommended not to follow these steps on production environment and should not install Office Web Apps on a DC

更新,大家也可以查看这里: