Getting updates into SCCM Task Sequence

Getting updates into SCCM Task Sequence

Postby dambrosioj » 19.08.2014, 15:51

So this may be an odd request but we have our office 2013 install in a scmm task sequence and would like to have all the updates install afterwards. I tried to download all the updates with wsusoffline and then upload everything to the distribution point then trying to run update.cmd as the program but it never does anything in the task sequence just says installed.

Does anyone have any suggestions or maybe an alternate way to get office updates into sccm/task sequence?
dambrosioj
 

Re: Getting updates into SCCM Task Sequence

Postby Cababs » 19.08.2014, 19:23

I am not familiar with SCCM but I am quite familiar with MDT. I believe SCCM is a "MDT on Steroids"

assuming that the task sequence installs office once the OS is installed and you are at a desktop, like you would normally.

all you need to do is add the office updates from WSUSOU to you Office 2013 "Updates" folder. these would then install automatically when SCCM does its thing.

you can keep updating the updates folder to include new updates without changing SCCM task sequence.
Notable Achievements
CompTIA A+
HNC Computing
Cababs
 
Posts: 187
Joined: 22.12.2013, 01:17

Re: Getting updates into SCCM Task Sequence

Postby dambrosioj » 19.08.2014, 19:43

I thought the same thing but the downloads from WSUSOU are cab files and when moved to my updates folder in office they do not install. Am I missing something?
dambrosioj
 

Re: Getting updates into SCCM Task Sequence

Postby aker » 19.08.2014, 21:22

Unpack the cab into the updates-folder of your Office installation media.
The .msp-files inside should be installed by the setup automatically.

Please do a wsusou installation on a test machine to find out, what files you have to copy, as their names aren't helpful, when trying to find out, what Office version they are for.
Wer Rechtschreibfehler findet, darf sie behalten oder an den Meistbietenden versteigern. / Everybody finding a misspelling is allowed to keep or sell it.
aker

WSUS Offline Update „Community Edition“
https://gitlab.com/wsusoffline/wsusoffline/-/releases
aker
 
Posts: 3999
Joined: 02.03.2011, 15:32

Re: Getting updates into SCCM Task Sequence

Postby Cababs » 20.08.2014, 22:24

sorry I missed a step. you do need to extracts the update files.

the way I do it is use a .cmd file to automate the process

Code: Select all
TITLE Microsoft Office 2013 x86 Slipstreamer

'Variables
SET WOU_O2k13SP="C:\Users\Cababs\Desktop\wsusoffline\client\o2k13\enu"
SET WOU_O2k13="C:\Users\Cababs\Desktop\wsusoffline\client\o2k13\glb"
SET TempDir="E:\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 %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 %WOU_O2k13%
REM echo %cd%

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

pause
EXIT



all you would need to do is change the variables to your values. if you need this for x64 office then change "FOR %%f IN (*x86*.exe)" to "FOR %%f IN (*x64*.exe)"

Also you will need to disable UAC to do this. UAC pops up on every update
Notable Achievements
CompTIA A+
HNC Computing
Cababs
 
Posts: 187
Joined: 22.12.2013, 01:17


Return to Installation / Updating

Who is online

Users browsing this forum: No registered users and 35 guests