错误:
从策略 LiveMeeting 2007 中删除应用程序 Microsoft Office Live Meeting 2007 的分配失败。错误为:%%2
无法找到来自源应用程序管理组策略的事件 ID 103 的描述。引发此问题的组件
您的本地计算机上未安装此事件,或者安装已损坏。您可以在本地计算机上安装或修复该组件。
我们只在 Windows 8.1 域站上遇到了问题...Windows 7 域站没有遇到问题
但没有成功......
手动安装工作正常:Live Meeting x86 与 Windows 8.1 x64
有人知道 GPO 发生了什么事吗?
答案1
我正在尝试通过类似于部署 Office 2013 的批处理文件在 Windows 8.1 上安装 Office Live Meeting 2007 ...
所以我有:
@echo off
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%
if %errorlevel%==1 (goto DeployLiveMeeting) else (goto End)
REM If 1 returned, the product was not found. Run setup here.
:DeployLiveMeeting
start /wait msiexec.exe /i \\scripts\OfficeCommunicator2007\LiveMeeting.msi" /passive /norestart
REM If 0 or other was returned, the product was found or another error occurred. Do nothing.
:End
但是注册查询末尾的 %ProductName% (Office15.PROPLUS) 适用于 Office 2013... - 我应该使用什么进行 Live Meeting ???