Estou tentando instalar o Office Live Meeting 2007 no Windows 8.1 por meio de um arquivo em lote semelhante ao implantar o Office 2013 ...
Então eu tenho:
@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
Mas% ProductName% no final da consulta reg (Office15.PROPLUS) funcionou no Office 2013 ... - o que devo usar para o Live Meeting?