Windows-Event-Log
應用程序事件日誌源:SideBySide,事件 ID:35 Lync.exe.Manifest 錯誤
我在 Windows 事件日誌中看到帶有以下簽名的錯誤:
- **日誌:**應用程序
- **資料來源:**並排
- 事件編號: 35
- **級別:**錯誤
- 說明: “C:\Program Files\Microsoft Office 15\root\office15\lync.exe.Manifest”的啟動上下文生成失敗。清單或策略文件“C:\Program Files\Microsoft Office 15\root\office15\”中的錯誤UccApi.DLL”在第 1 行。在清單中找到的組件標識與請求的組件的標識不匹配。參考是 UccApi,processorArchitecture=“AMD64”,type=“win32”,version=“15.0.0.0”。定義為 UccApi,processorArchitecture=“x86”,type=“win32”,version=“15.0.0.0”。請使用 sxstrace.exe 進行詳細診斷。
我沒有看到任何相關的負面症狀;但希望盡可能讓我的日誌沒有錯誤。
如何解決此問題/防止此錯誤?
我通過修改錯誤 (
C:\Program Files\Microsoft Office 15\root\office15\LYNC.EXE.MANIFEST
) 中報告的清單文件解決了這個問題,更改了 UccApi DLL 的處理器架構。前:
<assemblyIdentity type="win32" name="UccApi" version="15.0.0.0" processorArchitecture="*"></assemblyIdentity>
後:
<assemblyIdentity type="win32" name="UccApi" version="15.0.0.0" processorArchitecture="x86"></assemblyIdentity>