Page 1 of 1

Download updates for Office2013 integration

PostPosted: 06.03.2015, 19:41
by macgyver2004
Could there be an option to download updates in msp format to integrate into Office2013 instalation.
http://blogs.technet.com/b/office_resou ... ation.aspx

Re: Download updates for Office2013 integration

PostPosted: 08.03.2015, 14:05
by Cababs
when WOU downloads them, it downloads them as .exe. what you can do from there is extract them into your Office source files. I am using a script which does this for me.

UAC needs to be disabled for the automation to work, otherwise you have to acknowledge every update that you want to integrate.

Code: Select all
TITLE Microsoft Office 2013 x86 Slipstreamer

'Variables
SET WOU_O2k13SP="G:\Updates\wsusoffline\client\o2k13\enu"
SET WOU_O2k13="G:\Updates\wsusoffline\client\o2k13\glb"
SET TempDir="D:\Microsoft Office\The Complete Microsoft Office 2013 Suite - 32-bit Edition"

CLS
@echo off
ECHO.
ECHO Slipstreaming Microsoft Office 2013 x86 Latest Service Pack
ECHO Please wait...

cd /d %WOU_O2k13SP%
REM echo %cd%

FOR %%f IN (*x86*.exe) DO %%f /quiet /norestart /extract:%TempDir%\updates
ECHO.
ECHO Service Pack Slipstreaming Completed!
ECHO.

ECHO.
ECHO Slipstreaming Microsoft Office 2013 x86 Updates
ECHO Please wait...

cd /d %WOU_O2k13%
REM echo %cd%

FOR %%f IN (*x86*.exe) DO %%f /quiet /norestart /extract:%TempDir%\updates
ECHO.
ECHO Microsoft Office 2013 x86 Slipstreaming Completed!
ECHO.

pause
EXIT


you need to change the variables to suit your environment and make sure the change SET WOU_O2k13SP="G:\Updates\wsusoffline\client\o2k13\enu" to a different language if not using English.
if you want this to work for the x64 version of Office 2013 then just change the x86 to x64. simple as that.