Page 1 of 2

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 25.03.2012, 21:41
by WSUSUpdateAdmin
From faq-enu.txt:
--------------------------------------------------------------------------------
Q: I miss the x64 version of Office 2010 Service Pack 1. How can I have it downloaded?
A: Please call ...\cmd\AddOffice2010x64Support.cmd {lng} once to add its URL to your custom static download definitions (see directory ...\static\custom).
--------------------------------------------------------------------------------

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 14.06.2012, 05:50
by kirkers
Tried this, and specified ENU for the language. Also have Outlook 2010 installed.

Still no o2k10 updates downloaded under v7.3.2.

Any other suggestions?

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 14.06.2012, 09:25
by Denniss
This cmd switch affect the download of the servicepack, after successfully executing this cmd file your should have StaticDownloadLinks-o2k10-enu.txt inside \static\custom.
All other Office updates are downloaded with the global office updates (into \client\ofc)

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 08:59
by UranusOne
I have found a possible reason by is not installed the Office2010 ServicePack1 x64.

\wsusoffline\client\exclude\ExcludeList.txt
Code: Select all
kb816093,MS03-011: Flaw in the Microsoft VM could enable system compromise
kb951847,.NET Framework 3.5 Service Pack 1
kb890830,Malicious Software Removal Tool
kb926874,Internet Explorer 7
kb940767,Internet Explorer 7
kb944036,Internet Explorer 8
kb982861,Internet Explorer 9
kb976002,Browser Choice
kb923618,Office 2003 Service Pack 3
kb953195,Office 2007 Service Pack 2
kb2526086,Office 2007 Service Pack 3
kb2460049,Office 2010 Service Pack 1
kb936929,Windows XP Service Pack 3
kb914961,Windows Server 2003 Service Pack 2
kb936330,Windows Vista / Server 2008 Service Pack 1
kb948465,Windows Vista / Server 2008 Service Pack 2
kb976932,Windows 7 / Server 2008 R2 Service Pack 1


kb2460049,Office 2010 Service Pack 1

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 10:10
by Denniss
It is excluded because it's defined as static download. The dynamic update determination would download it again under a different name or location.
Do you have the file I mentioned above inside the \static\custom folder?

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 11:13
by UranusOne
The file mentioned above was \wsusoffline\client\exclude\ExcludeList.txt

\wsusoffline\client\static\custom (folder is empty)

\wsusoffline\static\custom\StaticDownloadLinks-o2k10-esn.txt
Code: Select all
 http://download.microsoft.com/download/A/F/C/AFCF39EC-10A8-491C-9751-129751989488/officesuite2010sp1-kb2460049-x64-fullfile-es-es.exe


The problem is not to download the file. The problem is that the client doesn't install the service pack 1 x64. With Service Pack 1 x86 no problem.

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 11:20
by aker
The ExcludList is only used when determining updates dynamic.
The installation of Service Packs is independend from this.

DoUpdate.cmd
Code: Select all
rem *** Check Office Service Pack versions ***
echo Checking Office Service Pack versions...
if exist "%TEMP%\MissingUpdateIds.txt" del "%TEMP%\MissingUpdateIds.txt"
if "%O2K3_VER_MAJOR%"=="" goto SkipSPo2k3
if %O2K3_SP_VER% LSS %O2K3_SP_VER_TARGET% echo %O2K3_SP_TARGET_ID%>>"%TEMP%\MissingUpdateIds.txt"
:SkipSPo2k3
if "%O2K7_VER_MAJOR%"=="" goto SkipSPo2k7
if %O2K7_SP_VER% LSS %O2K7_SP_VER_TARGET% echo %O2K7_SP_TARGET_ID%>>"%TEMP%\MissingUpdateIds.txt"
:SkipSPo2k7
if "%O2K10_VER_MAJOR%"=="" goto SkipSPo2k10
if %O2K10_SP_VER% LSS %O2K10_SP_VER_TARGET% echo %O2K10_SP_TARGET_ID%>>"%TEMP%\MissingUpdateIds.txt"
:SkipSPo2k10
if not exist "%TEMP%\MissingUpdateIds.txt" goto SkipSPOfc
call ListUpdatesToInstall.cmd /excludestatics /ignoreblacklist
if errorlevel 1 goto ListError
if exist "%TEMP%\UpdatesToInstall.txt" (
  echo Installing most recent Office Service Pack^(s^)...
  call InstallListedUpdates.cmd %VERIFY_MODE% /errorsaswarnings
) else (
  echo Warning: Office Service Pack installation file^(s^) not found.
  echo %DATE% %TIME% - Warning: Office Service Pack installation file^(s^) not found >>%UPDATE_LOGFILE%
  goto SkipSPOfc
)
set REBOOT_REQUIRED=1

call ListUpdatesToInstall.cmd /excludestatics /ignoreblacklist

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 11:36
by UranusOne
Ok aker, but how is it that works with that code the update for o2k10 x86, but no on o2k10 x64?

And, something that catches my attention, I don't see where... is assigned the value for %O2K10_SP_VER_TARGET%

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 11:51
by aker
It is set in "SetTargetEnvVars.cmd"
Code: Select all
:SetOfficeName
if "%O2K3_VER_MAJOR%"=="" goto NoO2k3
rem *** Office 2003 ***
set OFC_NAME=o2k3
set OFC_LANG=%O2K3_LANG%
set O2K3_SP_VER_TARGET=3
set O2K3_SP_TARGET_ID=923618
:NoO2k3
if "%O2K7_VER_MAJOR%"=="" goto NoO2k7
rem *** Office 2007 ***
set OFC_NAME=o2k7
set OFC_LANG=%O2K7_LANG%
set O2K7_SP_VER_TARGET=3
set O2K7_SP_TARGET_ID=2526086
:NoO2k7
if "%O2K10_VER_MAJOR%"=="" goto NoO2k10
rem *** Office 2010 ***
set OFC_NAME=o2k10
set OFC_LANG=%O2K10_LANG%
set O2K10_SP_VER_TARGET=1
set O2K10_SP_TARGET_ID=2460049-%O2K10_ARCH%


Just look in the las Line of the extract. There the x64 is included

Re: NO update FOR OFFICE 2010 64 BIT?

PostPosted: 16.06.2012, 12:11
by UranusOne
last Line of the extract?