Eine unbeaufsichtigte Office 2013 Deinstallation habe ich für mich auf folgende Art gelöst:
Erstellen eines Startupscripts
@echo off
setlocal EnableDelayedExpansion
set src=\\share\Microsoft\Office_2013_x86
set proplus=PROPLUS set ProductName=Office15.PROPLUS
set/p _="<Configuration Product="%proplus%"><Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /><Setting Id="SETUP_REBOOT" Value="Never" /></Configuration>" <nul > "%temp%\uninstall.xml"
if "%ProgramFiles(x86)%"=="" ( reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName% if %errorlevel%==0 "%src%\setup.exe" /uninstall %proplus% /config "%temp%\silent.xml"
goto exit )
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName% if %errorlevel%==0 "%src%\setup.exe" /uninstall %proplus% /config "%temp%\silent.xml"
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%ProductName%
if %errorlevel%==0 "%src%\setup.exe" /uninstall %proplus% /config "%temp%\uninstall.xml"
:exit
endlocal