NO update FOR OFFICE 2010 64 BIT?

Re: NO update FOR OFFICE 2010 64 BIT?

Postby WSUSUpdateAdmin » 25.03.2012, 21:41

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).
--------------------------------------------------------------------------------
WSUSUpdateAdmin
Administrator
 
Posts: 2245
Joined: 07.07.2009, 14:38

Re: NO update FOR OFFICE 2010 64 BIT?

Postby kirkers » 14.06.2012, 05:50

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?
kirkers
 

Re: NO update FOR OFFICE 2010 64 BIT?

Postby Denniss » 14.06.2012, 09:25

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)
Denniss
 
Posts: 869
Joined: 01.08.2009, 10:51

Re: NO update FOR OFFICE 2010 64 BIT?

Postby UranusOne » 16.06.2012, 08:59

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
UranusOne
 
Posts: 20
Joined: 12.11.2010, 10:05

Re: NO update FOR OFFICE 2010 64 BIT?

Postby Denniss » 16.06.2012, 10:10

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?
Denniss
 
Posts: 869
Joined: 01.08.2009, 10:51

Re: NO update FOR OFFICE 2010 64 BIT?

Postby UranusOne » 16.06.2012, 11:13

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.
UranusOne
 
Posts: 20
Joined: 12.11.2010, 10:05

Re: NO update FOR OFFICE 2010 64 BIT?

Postby aker » 16.06.2012, 11:20

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
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: NO update FOR OFFICE 2010 64 BIT?

Postby UranusOne » 16.06.2012, 11:36

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%
UranusOne
 
Posts: 20
Joined: 12.11.2010, 10:05

Re: NO update FOR OFFICE 2010 64 BIT?

Postby aker » 16.06.2012, 11:51

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
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: NO update FOR OFFICE 2010 64 BIT?

Postby UranusOne » 16.06.2012, 12:11

last Line of the extract?
UranusOne
 
Posts: 20
Joined: 12.11.2010, 10:05

Next

Return to Fehlende Updates / Missing updates

Who is online

Users browsing this forum: No registered users and 51 guests

cron