Hello,
I am trying to deploy a batch file that has 3 parts:
First is to remove Office 2010 cleanly
Second is to install office 2013 with an MSP file
Finally,the installation of Picture manager portable version.
I am getting every time FAILED status, with 16386 code and a log with no real info..
https://drive.google.com/open?id=1Go3YhtJ7nJuBLeT6PWCIE9lsJ23ivejPXOWEz_YBMBA
I used all kinds of accounts: Active directory accounts, local accounts and chose the Download and install option in the package.
For info, i am trying to do it from a NAS and such installs always worked before as per the system administrator.
The script is as follows:
----------------------------------
ECHO OFF
IF EXIST "%CommonProgramFiles(x86)%\Microsoft Shared\OFFICE14\Office Setup Controller\setup.exe" (
"%CommonProgramFiles(x86)%\Microsoft Shared\OFFICE14\Office Setup Controller\setup.exe"/uninstall PROPLUS /dll OSETUP.DLL /config %~dp0uninstall.xml
) ELSE (
echo "Office 2010 Not Found"
)
%~dp0FR\setup.exe /adminfile %~dp0Office.Upgrade\UpgradeOffice10to13.MSP
msiexec -i "%~dp0Office.Upgrade\FRA\Microsoft Office Professional Edition 2003.msi" /qn /norestart
-----------------------------------------
Thank you in advance for your help!