Known issues with this security update
- After you install this security update, you may notice that the title of the update is listed in Chinese Simplified script instead of English in the Add or Remove Programs or Programs and Features item in Control Panel.
Note This issue does not affect the functionality of the security update. This is a text mismatch issue only.
To resolve the issue, follow these steps:
- Uninstall the security update.
- Visit the Microsoft Download Center page to reinstall the security update:
Alternately, you can download the Excel 2003 update directly with the following link:
Download the office2003-KB978474-FullFile-ENU.exe package now.
Other workarounds
Workaround 1
To work around this issue, you can change the registry entry for MS10-017 by using Reg.exe to correct the display text in the Add or Remove Programs Control Panel item.
Important note This script is provided
as is. It is intended as a
sample only. Microsoft offers no warranty or support for this script. Use this script at your own risk.
The parent installer registry key for this particular product will change based on language of the Excel 2003 product that is being used:
- The parent key for English systems: 9040110900063D11C8EF10054038389C
- The parent key for Spanish systems: A0C0110900063D11C8EF10054038389C
- The parent key for German systems: 7040110900063D11C8EF10054038389C
- The parent key for Japanese systems: 1140110900063D11C8EF10054038389C
To change the registry entry for MS10-017, follow these steps:
- Create a backup copy of the registry keys by using the following command from an elevated command prompt:
REG EXPORT HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\90403E1900063D11C8EF10054038389C\Patches\7DC3DBE3862DA2449A52E2C25C899D8E KB978474_BkUp.reg
- Import the updated registry key by using the following command from an elevated command prompt:
REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\9040110900063D11C8EF10054038389C\Patches\7DC3DBE3862DA2449A52E2C25C899D8E /v DisplayName /t REG_SZ /d "Security Update for Excel 2003 (KB978474): EXCEL" /f
Note For Windows Vista and Windows Server 2008 only, you must first take ownership of this registry key.
How to undo the workaround
To restore the original state, run the following command from an elevated command prompt:
REG IMPORT KB978474_BkUp.reg
Workaround 2
The following script adds an additional command line script that will determine the exact key that is being used if you are unsure of the client base and have a mixed environment that contains multiple languages.
@Echo off
REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products" /s | find "7DC3DBE3862DA2449A52E2C25C899D8E" > 978474_out.txt
for /f %%a in (978474_out.txt) do REG ADD "%%a" /v DisplayName /t REG_SZ /d "Security Update for Excel 2003 (KB978474): EXCEL" /f
Del 978474_out.txt /q
exit